Coverage Report

Created: 2025-07-11 06:20

/src/jbig2dec/jbig2_text.c
Line
Count
Source (jump to first uncovered line)
1
/* Copyright (C) 2001-2023 Artifex Software, Inc.
2
   All Rights Reserved.
3
4
   This software is provided AS-IS with no warranty, either express or
5
   implied.
6
7
   This software is distributed under license and may not be copied,
8
   modified or distributed except as expressly authorized under the terms
9
   of the license contained in the file LICENSE in this distribution.
10
11
   Refer to licensing information at http://www.artifex.com or contact
12
   Artifex Software, Inc.,  39 Mesa Street, Suite 108A, San Francisco,
13
   CA 94129, USA, for further information.
14
*/
15
16
/*
17
    jbig2dec
18
*/
19
20
#ifdef HAVE_CONFIG_H
21
#include "config.h"
22
#endif
23
#include "os_types.h"
24
25
#include <stddef.h>
26
#include <string.h>             /* memset() */
27
28
#include "jbig2.h"
29
#include "jbig2_priv.h"
30
#include "jbig2_arith.h"
31
#include "jbig2_arith_int.h"
32
#include "jbig2_arith_iaid.h"
33
#include "jbig2_generic.h"
34
#include "jbig2_huffman.h"
35
#include "jbig2_image.h"
36
#include "jbig2_page.h"
37
#include "jbig2_refinement.h"
38
#include "jbig2_segment.h"
39
#include "jbig2_symbol_dict.h"
40
#include "jbig2_text.h"
41
42
/**
43
 * jbig2_decode_text_region: decode a text region segment
44
 *
45
 * @ctx: jbig2 decoder context
46
 * @segment: jbig2 segment (header) structure
47
 * @params: parameters from the text region header
48
 * @dicts: an array of referenced symbol dictionaries
49
 * @n_dicts: the number of referenced symbol dictionaries
50
 * @image: image structure in which to store the decoded region bitmap
51
 * @data: pointer to text region data to be decoded
52
 * @size: length of text region data
53
 *
54
 * Implements the text region decoding procedure
55
 * described in section 6.4 of the JBIG2 spec.
56
 *
57
 * returns: 0 on success
58
 **/
59
int
60
jbig2_decode_text_region(Jbig2Ctx *ctx, Jbig2Segment *segment,
61
                         const Jbig2TextRegionParams *params,
62
                         const Jbig2SymbolDict *const *dicts, const uint32_t n_dicts,
63
                         Jbig2Image *image, const byte *data, const size_t size, Jbig2ArithCx *GR_stats, Jbig2ArithState *as, Jbig2WordStream *ws)
64
3.64k
{
65
    /* relevant bits of 6.4.4 */
66
3.64k
    uint32_t NINSTANCES;
67
3.64k
    uint32_t ID;
68
3.64k
    int32_t STRIPT;
69
3.64k
    int32_t FIRSTS;
70
3.64k
    int32_t DT;
71
3.64k
    int32_t DFS;
72
3.64k
    int32_t IDS;
73
3.64k
    int32_t CURS;
74
3.64k
    int32_t CURT;
75
3.64k
    int S, T;
76
3.64k
    int x, y;
77
3.64k
    bool first_symbol;
78
3.64k
    uint32_t index, SBNUMSYMS;
79
3.64k
    Jbig2Image *IB = NULL;
80
3.64k
    Jbig2Image *IBO = NULL;
81
3.64k
    Jbig2Image *refimage = NULL;
82
3.64k
    Jbig2HuffmanState *hs = NULL;
83
3.64k
    Jbig2HuffmanTable *SBSYMCODES = NULL;
84
3.64k
    int code = 0;
85
3.64k
    int RI;
86
87
3.64k
    SBNUMSYMS = 0;
88
14.4k
    for (index = 0; index < n_dicts; index++) {
89
10.8k
        SBNUMSYMS += dicts[index]->n_symbols;
90
10.8k
    }
91
3.64k
    jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number, "symbol list contains %d glyphs in %d dictionaries", SBNUMSYMS, n_dicts);
92
93
3.64k
    if (params->SBHUFF) {
94
2.27k
        Jbig2HuffmanTable *runcodes = NULL;
95
2.27k
        Jbig2HuffmanParams runcodeparams;
96
2.27k
        Jbig2HuffmanLine runcodelengths[35];
97
2.27k
        Jbig2HuffmanLine *symcodelengths = NULL;
98
2.27k
        Jbig2HuffmanParams symcodeparams;
99
2.27k
        int err, len, range, r;
100
101
2.27k
        jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number, "huffman coded text region");
102
2.27k
        hs = jbig2_huffman_new(ctx, ws);
103
2.27k
        if (hs == NULL)
104
0
            return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate text region");
105
106
        /* 7.4.3.1.7 - decode symbol ID Huffman table */
107
        /* this is actually part of the segment header, but it is more
108
           convenient to handle it here */
109
110
        /* parse and build the runlength code huffman table */
111
81.8k
        for (index = 0; index < 35; index++) {
112
79.5k
            runcodelengths[index].PREFLEN = jbig2_huffman_get_bits(hs, 4, &code);
113
79.5k
            if (code < 0) {
114
0
                jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to read huffman runcode lengths");
115
0
                goto cleanup1;
116
0
            }
117
79.5k
            if (code > 0) {
118
0
                jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "OOB decoding huffman runcode lengths");
119
0
                goto cleanup1;
120
0
            }
121
79.5k
            runcodelengths[index].RANGELEN = 0;
122
79.5k
            runcodelengths[index].RANGELOW = index;
123
79.5k
            jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number, "  read runcode%d length %d", index, runcodelengths[index].PREFLEN);
124
79.5k
        }
125
2.27k
        runcodeparams.HTOOB = 0;
126
2.27k
        runcodeparams.lines = runcodelengths;
127
2.27k
        runcodeparams.n_lines = 35;
128
2.27k
        runcodes = jbig2_build_huffman_table(ctx, &runcodeparams);
129
2.27k
        if (runcodes == NULL) {
130
16
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "error constructing symbol ID runcode table");
131
16
            goto cleanup1;
132
16
        }
133
134
        /* decode the symbol ID code lengths using the runlength table */
135
2.25k
        symcodelengths = jbig2_new(ctx, Jbig2HuffmanLine, SBNUMSYMS);
136
2.25k
        if (symcodelengths == NULL) {
137
1
            code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "failed to allocate memory when reading symbol ID huffman table");
138
1
            goto cleanup1;
139
1
        }
140
2.25k
        index = 0;
141
728k
        while (index < SBNUMSYMS) {
142
726k
            code = jbig2_huffman_get(hs, runcodes, &err);
143
726k
            if (err < 0) {
144
0
                code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "error reading symbol ID huffman table");
145
0
                goto cleanup1;
146
0
            }
147
726k
            if (err > 0) {
148
0
                code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "OOB decoding symbol ID huffman table");
149
0
                goto cleanup1;
150
0
            }
151
726k
            if (code < 0 || code >= 35) {
152
0
                code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "symbol ID huffman table out of range");
153
0
                goto cleanup1;
154
0
            }
155
156
726k
            if (code < 32) {
157
716k
                len = code;
158
716k
                range = 1;
159
716k
            } else {
160
9.67k
                if (code == 32) {
161
2.17k
                    if (index < 1) {
162
0
                        code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "error decoding symbol ID table: run length with no antecedent");
163
0
                        goto cleanup1;
164
0
                    }
165
2.17k
                    len = symcodelengths[index - 1].PREFLEN;
166
7.50k
                } else {
167
7.50k
                    len = 0;    /* code == 33 or 34 */
168
7.50k
                }
169
9.67k
                err = 0;
170
9.67k
                if (code == 32)
171
2.17k
                    range = jbig2_huffman_get_bits(hs, 2, &err) + 3;
172
7.50k
                else if (code == 33)
173
487
                    range = jbig2_huffman_get_bits(hs, 3, &err) + 3;
174
7.02k
                else if (code == 34)
175
7.02k
                    range = jbig2_huffman_get_bits(hs, 7, &err) + 11;
176
9.67k
                if (err < 0) {
177
0
                    code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to read huffman code");
178
0
                    goto cleanup1;
179
0
                }
180
9.67k
                if (err > 0) {
181
0
                    code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "OOB decoding huffman code");
182
0
                    goto cleanup1;
183
0
                }
184
9.67k
            }
185
726k
            jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number, "  read runcode%d at index %d (length %d range %d)", code, index, len, range);
186
726k
            if (index + range > SBNUMSYMS) {
187
1.79k
                jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number,
188
1.79k
                            "runlength extends %d entries beyond the end of symbol ID table", index + range - SBNUMSYMS);
189
1.79k
                range = SBNUMSYMS - index;
190
1.79k
            }
191
1.91M
            for (r = 0; r < range; r++) {
192
1.18M
                symcodelengths[index + r].PREFLEN = len;
193
1.18M
                symcodelengths[index + r].RANGELEN = 0;
194
1.18M
                symcodelengths[index + r].RANGELOW = index + r;
195
1.18M
            }
196
726k
            index += r;
197
726k
        }
198
199
2.25k
        if (index < SBNUMSYMS) {
200
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "runlength codes do not cover the available symbol set");
201
0
            goto cleanup1;
202
0
        }
203
204
2.25k
        symcodeparams.HTOOB = 0;
205
2.25k
        symcodeparams.lines = symcodelengths;
206
2.25k
        symcodeparams.n_lines = SBNUMSYMS;
207
208
        /* skip to byte boundary */
209
2.25k
        err = jbig2_huffman_skip(hs);
210
2.25k
        if (err < 0)
211
0
        {
212
0
            jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to skip to next byte when building huffman table");
213
0
            goto cleanup1;
214
0
        }
215
216
        /* finally, construct the symbol ID huffman table itself */
217
2.25k
        SBSYMCODES = jbig2_build_huffman_table(ctx, &symcodeparams);
218
219
2.27k
cleanup1:
220
2.27k
        jbig2_free(ctx->allocator, symcodelengths);
221
2.27k
        jbig2_release_huffman_table(ctx, runcodes);
222
223
2.27k
        if (SBSYMCODES == NULL) {
224
20
            jbig2_huffman_free(ctx, hs);
225
20
            return jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to construct symbol ID huffman table");
226
20
        }
227
2.27k
    }
228
229
    /* 6.4.5 (1) */
230
3.62k
    jbig2_image_clear(ctx, image, params->SBDEFPIXEL);
231
232
    /* 6.4.6 */
233
3.62k
    if (params->SBHUFF) {
234
2.25k
        STRIPT = jbig2_huffman_get(hs, params->SBHUFFDT, &code);
235
2.25k
    } else {
236
1.37k
        code = jbig2_arith_int_decode(ctx, params->IADT, as, &STRIPT);
237
1.37k
    }
238
3.62k
    if (code < 0) {
239
1
        jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode strip T");
240
1
        goto cleanup2;
241
1
    }
242
3.62k
    if (code > 0) {
243
2
        code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "OOB obtained when decoding strip T");
244
2
        goto cleanup2;
245
2
    }
246
247
    /* 6.4.5 (2) */
248
3.62k
    STRIPT *= -(params->SBSTRIPS);
249
3.62k
    FIRSTS = 0;
250
3.62k
    NINSTANCES = 0;
251
252
    /* 6.4.5 (3) */
253
3.74M
    while (NINSTANCES < params->SBNUMINSTANCES) {
254
        /* (3b) */
255
3.74M
        if (params->SBHUFF) {
256
2.62M
            DT = jbig2_huffman_get(hs, params->SBHUFFDT, &code);
257
2.62M
        } else {
258
1.11M
            code = jbig2_arith_int_decode(ctx, params->IADT, as, &DT);
259
1.11M
        }
260
3.74M
        if (code < 0) {
261
1
            jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode delta T");
262
1
            goto cleanup2;
263
1
        }
264
3.74M
        if (code > 0) {
265
9
            code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "OOB obtained when decoding delta T");
266
9
            goto cleanup2;
267
9
        }
268
3.74M
        DT *= params->SBSTRIPS;
269
3.74M
        STRIPT += DT;
270
271
3.74M
        first_symbol = TRUE;
272
        /* 6.4.5 (3c) - decode symbols in strip */
273
49.6M
        for (;;) {
274
            /* (3c.i) */
275
49.6M
            if (first_symbol) {
276
                /* 6.4.7 */
277
3.74M
                if (params->SBHUFF) {
278
2.62M
                    DFS = jbig2_huffman_get(hs, params->SBHUFFFS, &code);
279
2.62M
                } else {
280
1.11M
                    code = jbig2_arith_int_decode(ctx, params->IAFS, as, &DFS);
281
1.11M
                }
282
3.74M
                if (code < 0) {
283
1
                    jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode strip symbol S-difference");
284
1
                    goto cleanup2;
285
1
                }
286
3.74M
                if (code > 0) {
287
23
                    code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "OOB obtained when decoding strip symbol S-difference");
288
23
                    goto cleanup2;
289
23
                }
290
3.74M
                FIRSTS += DFS;
291
3.74M
                CURS = FIRSTS;
292
3.74M
                first_symbol = FALSE;
293
45.8M
            } else {
294
45.8M
                if (NINSTANCES > params->SBNUMINSTANCES) {
295
2.17k
                    jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "too many NINSTANCES (%d) decoded", NINSTANCES);
296
2.17k
                    break;
297
2.17k
                }
298
                /* (3c.ii) / 6.4.8 */
299
45.8M
                if (params->SBHUFF) {
300
10.7M
                    IDS = jbig2_huffman_get(hs, params->SBHUFFDS, &code);
301
35.1M
                } else {
302
35.1M
                    code = jbig2_arith_int_decode(ctx, params->IADS, as, &IDS);
303
35.1M
                }
304
45.8M
                if (code < 0) {
305
1
                    jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode symbol instance S coordinate");
306
1
                    goto cleanup2;
307
1
                }
308
45.8M
                if (code > 0) {
309
3.73M
                    jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number, "OOB obtained when decoding symbol instance S coordinate signals end of strip with T value %d", DT);
310
3.73M
                    break;
311
3.73M
                }
312
42.1M
                CURS += IDS + params->SBDSOFFSET;
313
42.1M
            }
314
315
            /* (3c.iii) / 6.4.9 */
316
45.8M
            if (params->SBSTRIPS == 1) {
317
40.2M
                CURT = 0;
318
40.2M
            } else if (params->SBHUFF) {
319
5.68M
                CURT = jbig2_huffman_get_bits(hs, params->LOGSBSTRIPS, &code);
320
5.68M
            } else {
321
2.39k
                code = jbig2_arith_int_decode(ctx, params->IAIT, as, &CURT);
322
2.39k
            }
323
45.8M
            if (code < 0) {
324
0
                jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode symbol instance T coordinate");
325
0
                goto cleanup2;
326
0
            }
327
45.8M
            if (code > 0) {
328
10
                code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "OOB obtained when decoding symbol instance T coordinate");
329
10
                goto cleanup2;
330
10
            }
331
45.8M
            T = STRIPT + CURT;
332
333
            /* (3b.iv) / 6.4.10 - decode the symbol ID */
334
45.8M
            if (params->SBHUFF) {
335
10.7M
                ID = jbig2_huffman_get(hs, SBSYMCODES, &code);
336
35.1M
            } else {
337
35.1M
                code = jbig2_arith_iaid_decode(ctx, params->IAID, as, (int *)&ID);
338
35.1M
            }
339
45.8M
            if (code < 0) {
340
5
                code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to obtain symbol instance symbol ID");
341
5
                goto cleanup2;
342
5
            }
343
45.8M
            if (code > 0) {
344
0
                code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "OOB obtained when decoding symbol instance symbol ID");
345
0
                goto cleanup2;
346
0
            }
347
45.8M
            if (ID >= SBNUMSYMS) {
348
4.50M
                jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "ignoring out of range symbol ID (%d/%d)", ID, SBNUMSYMS);
349
4.50M
                IB = NULL;
350
41.3M
            } else {
351
                /* (3c.v) / 6.4.11 - look up the symbol bitmap IB */
352
41.3M
                uint32_t id = ID;
353
354
41.3M
                index = 0;
355
47.9M
                while (id >= dicts[index]->n_symbols)
356
6.57M
                    id -= dicts[index++]->n_symbols;
357
41.3M
                if (dicts[index]->glyphs[id] == NULL) {
358
2.70M
                    jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "missing glyph (%d/%d), ignoring", index, id);
359
38.6M
                } else {
360
38.6M
                    IB = jbig2_image_reference(ctx, dicts[index]->glyphs[id]);
361
38.6M
                }
362
41.3M
            }
363
45.8M
            if (params->SBREFINE) {
364
5.42M
                if (params->SBHUFF) {
365
5.40M
                    RI = jbig2_huffman_get_bits(hs, 1, &code);
366
5.40M
                } else {
367
11.8k
                    code = jbig2_arith_int_decode(ctx, params->IARI, as, &RI);
368
11.8k
                }
369
5.42M
                if (code < 0) {
370
0
                    jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode symbol bitmap refinement indicator");
371
0
                    goto cleanup2;
372
0
                }
373
5.42M
                if (code > 0) {
374
3
                    code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "OOB obtained when decoding symbol bitmap refinement indicator");
375
3
                    goto cleanup2;
376
3
                }
377
40.4M
            } else {
378
40.4M
                RI = 0;
379
40.4M
            }
380
45.8M
            if (RI) {
381
16.3k
                Jbig2RefinementRegionParams rparams;
382
16.3k
                int32_t RDW, RDH, RDX, RDY;
383
16.3k
                size_t BMSIZE = 0;
384
16.3k
                int code1 = 0;
385
16.3k
                int code2 = 0;
386
16.3k
                int code3 = 0;
387
16.3k
                int code4 = 0;
388
16.3k
                int code5 = 0;
389
16.3k
                int code6 = 0;
390
391
                /* 6.4.11 (1, 2, 3, 4) */
392
16.3k
                if (!params->SBHUFF) {
393
8.57k
                    code1 = jbig2_arith_int_decode(ctx, params->IARDW, as, &RDW);
394
8.57k
                    code2 = jbig2_arith_int_decode(ctx, params->IARDH, as, &RDH);
395
8.57k
                    code3 = jbig2_arith_int_decode(ctx, params->IARDX, as, &RDX);
396
8.57k
                    code4 = jbig2_arith_int_decode(ctx, params->IARDY, as, &RDY);
397
8.57k
                } else {
398
7.78k
                    RDW = jbig2_huffman_get(hs, params->SBHUFFRDW, &code1);
399
7.78k
                    RDH = jbig2_huffman_get(hs, params->SBHUFFRDH, &code2);
400
7.78k
                    RDX = jbig2_huffman_get(hs, params->SBHUFFRDX, &code3);
401
7.78k
                    RDY = jbig2_huffman_get(hs, params->SBHUFFRDY, &code4);
402
7.78k
                    BMSIZE = jbig2_huffman_get(hs, params->SBHUFFRSIZE, &code5);
403
7.78k
                    code6 = jbig2_huffman_skip(hs);
404
7.78k
                }
405
406
16.3k
                if (code1 < 0 || code2 < 0 || code3 < 0 || code4 < 0 || code5 < 0 || code6 < 0) {
407
1
                    jbig2_image_release(ctx, IB);
408
1
                    code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode data");
409
1
                    goto cleanup2;
410
1
                }
411
16.3k
                if (code1 > 0 || code2 > 0 || code3 > 0 || code4 > 0 || code5 > 0 || code6 > 0) {
412
23
                    code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "OOB obtained when decoding symbol instance refinement data");
413
23
                    goto cleanup2;
414
23
                }
415
416
                /* 6.4.11 (6) */
417
16.3k
                if (IB) {
418
8.17k
                    IBO = IB;
419
8.17k
                    IB = NULL;
420
8.17k
                    if (((int32_t) IBO->width) + RDW < 0 || ((int32_t) IBO->height) + RDH < 0) {
421
15
                        code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "reference image dimensions negative");
422
15
                        goto cleanup2;
423
15
                    }
424
8.15k
                    refimage = jbig2_image_new(ctx, IBO->width + RDW, IBO->height + RDH);
425
8.15k
                    if (refimage == NULL) {
426
7
                        code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate reference image");
427
7
                        goto cleanup2;
428
7
                    }
429
8.14k
                    jbig2_image_clear(ctx, refimage, 0x00);
430
431
                    /* Table 12 */
432
8.14k
                    rparams.GRTEMPLATE = params->SBRTEMPLATE;
433
8.14k
                    rparams.GRREFERENCE = IBO;
434
8.14k
                    rparams.GRREFERENCEDX = (RDW >> 1) + RDX;
435
8.14k
                    rparams.GRREFERENCEDY = (RDH >> 1) + RDY;
436
8.14k
                    rparams.TPGRON = 0;
437
8.14k
                    memcpy(rparams.grat, params->sbrat, 4);
438
8.14k
                    code = jbig2_decode_refinement_region(ctx, segment, &rparams, as, refimage, GR_stats);
439
8.14k
                    if (code < 0) {
440
2
                        jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode refinement region");
441
2
                        goto cleanup2;
442
2
                    }
443
444
8.14k
                    jbig2_image_release(ctx, IBO);
445
8.14k
                    IBO = NULL;
446
8.14k
                    IB = refimage;
447
8.14k
                    refimage = NULL;
448
8.14k
                }
449
450
                /* 6.4.11 (7) */
451
16.3k
                if (params->SBHUFF) {
452
7.77k
                    code = jbig2_huffman_advance(hs, BMSIZE);
453
7.77k
                    if (code < 0) {
454
0
                        jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to advance after huffman decoding refinement region");
455
0
                        goto cleanup2;
456
0
                    }
457
7.77k
                }
458
16.3k
            }
459
460
            /* (3c.vi) */
461
45.8M
            if ((!params->TRANSPOSED) && (params->REFCORNER > 1) && IB) {
462
623k
                CURS += IB->width - 1;
463
45.2M
            } else if ((params->TRANSPOSED) && !(params->REFCORNER & 1) && IB) {
464
5.28M
                CURS += IB->height - 1;
465
5.28M
            }
466
467
            /* (3c.vii) */
468
45.8M
            S = CURS;
469
470
            /* (3c.viii) */
471
45.8M
            if (!params->TRANSPOSED) {
472
26.4M
                switch (params->REFCORNER) {
473
3.17M
                case JBIG2_CORNER_TOPLEFT:
474
3.17M
                    x = S;
475
3.17M
                    y = T;
476
3.17M
                    break;
477
24
                case JBIG2_CORNER_TOPRIGHT:
478
24
                    if (IB)
479
2
                        x = S - IB->width + 1;
480
22
                    else
481
22
                        x = S + 1;
482
24
                    y = T;
483
24
                    break;
484
22.6M
                case JBIG2_CORNER_BOTTOMLEFT:
485
22.6M
                    x = S;
486
22.6M
                    if (IB)
487
18.4M
                        y = T - IB->height + 1;
488
4.21M
                    else
489
4.21M
                        y = T + 1;
490
22.6M
                    break;
491
0
                default:
492
623k
                case JBIG2_CORNER_BOTTOMRIGHT:
493
623k
                    if (IB ) {
494
623k
                        x = S - IB->width + 1;
495
623k
                        y = T - IB->height + 1;
496
623k
                    } else {
497
106
                        x = S + 1;
498
106
                        y = T + 1;
499
106
                    }
500
623k
                    break;
501
26.4M
                }
502
26.4M
            } else {            /* TRANSPOSED */
503
19.4M
                switch (params->REFCORNER) {
504
12.6M
                case JBIG2_CORNER_TOPLEFT:
505
12.6M
                    x = T;
506
12.6M
                    y = S;
507
12.6M
                    break;
508
1.45M
                case JBIG2_CORNER_TOPRIGHT:
509
1.45M
                    if (IB)
510
1.45M
                        x = T - IB->width + 1;
511
48
                    else
512
48
                        x = T + 1;
513
1.45M
                    y = S;
514
1.45M
                    break;
515
1.09M
                case JBIG2_CORNER_BOTTOMLEFT:
516
1.09M
                    x = T;
517
1.09M
                    if (IB)
518
1.09M
                        y = S - IB->height + 1;
519
238
                    else
520
238
                        y = S + 1;
521
1.09M
                    break;
522
0
                default:
523
4.19M
                case JBIG2_CORNER_BOTTOMRIGHT:
524
4.19M
                    if (IB) {
525
4.19M
                        x = T - IB->width + 1;
526
4.19M
                        y = S - IB->height + 1;
527
4.19M
                    } else {
528
54
                        x = T + 1;
529
54
                        y = S + 1;
530
54
                    }
531
4.19M
                    break;
532
19.4M
                }
533
19.4M
            }
534
535
            /* (3c.ix) */
536
#ifdef JBIG2_DEBUG
537
            jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number,
538
                        "composing glyph ID %d: %dx%d @ (%d,%d) symbol %d/%d", ID, IB->width, IB->height, x, y, NINSTANCES + 1, params->SBNUMINSTANCES);
539
#endif
540
45.8M
            code = jbig2_image_compose(ctx, image, IB, x, y, params->SBCOMBOP);
541
45.8M
            if (code < 0) {
542
0
                jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to compose symbol instance symbol bitmap into picture");
543
0
                goto cleanup2;
544
0
            }
545
546
            /* (3c.x) */
547
45.8M
            if (IB && (!params->TRANSPOSED) && (params->REFCORNER < 2)) {
548
18.6M
                CURS += IB->width - 1;
549
27.2M
            } else if (IB && (params->TRANSPOSED) && (params->REFCORNER & 1)) {
550
14.1M
                CURS += IB->height - 1;
551
14.1M
            }
552
553
            /* (3c.xi) */
554
45.8M
            NINSTANCES++;
555
556
45.8M
            jbig2_image_release(ctx, IB);
557
45.8M
            IB = NULL;
558
45.8M
        }
559
        /* end strip */
560
3.74M
    }
561
    /* 6.4.5 (4) */
562
563
3.62k
cleanup2:
564
3.62k
    jbig2_image_release(ctx, refimage);
565
3.62k
    jbig2_image_release(ctx, IBO);
566
3.62k
    jbig2_image_release(ctx, IB);
567
3.62k
    if (params->SBHUFF) {
568
2.25k
        jbig2_release_huffman_table(ctx, SBSYMCODES);
569
2.25k
    }
570
3.62k
    jbig2_huffman_free(ctx, hs);
571
572
3.62k
    return code;
573
3.62k
}
574
575
/**
576
 * jbig2_text_region: read a text region segment header
577
 **/
578
int
579
jbig2_text_region(Jbig2Ctx *ctx, Jbig2Segment *segment, const byte *segment_data)
580
1.81k
{
581
1.81k
    uint32_t offset = 0;
582
1.81k
    Jbig2RegionSegmentInfo region_info;
583
1.81k
    Jbig2TextRegionParams params;
584
1.81k
    Jbig2Image *image = NULL;
585
1.81k
    Jbig2SymbolDict **dicts = NULL;
586
1.81k
    uint32_t n_dicts = 0;
587
1.81k
    uint16_t flags = 0;
588
1.81k
    uint16_t huffman_flags = 0;
589
1.81k
    Jbig2ArithCx *GR_stats = NULL;
590
1.81k
    int code = 0;
591
1.81k
    Jbig2WordStream *ws = NULL;
592
1.81k
    Jbig2ArithState *as = NULL;
593
1.81k
    uint32_t table_index = 0;
594
1.81k
    const Jbig2HuffmanParams *huffman_params = NULL;
595
596
    /* zero params to ease cleanup later */
597
1.81k
    memset(&params, 0, sizeof(Jbig2TextRegionParams));
598
599
    /* 7.4.1 */
600
1.81k
    if (segment->data_length < 17) {
601
2
        code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "segment too short");
602
2
        goto cleanup2;
603
2
    }
604
1.81k
    jbig2_get_region_segment_info(&region_info, segment_data);
605
1.81k
    offset += 17;
606
    /* Check for T.88 amendment 3 */
607
1.81k
    if (region_info.flags & 8)
608
1
        return jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "region segment flags indicate use of colored bitmap (NYI)");
609
610
    /* 7.4.3.1.1 */
611
1.80k
    if (segment->data_length - offset < 2) {
612
0
        code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "segment too short");
613
0
        goto cleanup2;
614
0
    }
615
1.80k
    flags = jbig2_get_uint16(segment_data + offset);
616
1.80k
    offset += 2;
617
618
1.80k
    jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number, "text region header flags 0x%04x", flags);
619
620
1.80k
    params.SBHUFF = flags & 0x0001;
621
1.80k
    params.SBREFINE = flags & 0x0002;
622
1.80k
    params.LOGSBSTRIPS = (flags & 0x000c) >> 2;
623
1.80k
    params.SBSTRIPS = 1 << params.LOGSBSTRIPS;
624
1.80k
    params.REFCORNER = (Jbig2RefCorner)((flags & 0x0030) >> 4);
625
1.80k
    params.TRANSPOSED = flags & 0x0040;
626
1.80k
    params.SBCOMBOP = (Jbig2ComposeOp)((flags & 0x0180) >> 7);
627
1.80k
    params.SBDEFPIXEL = flags & 0x0200;
628
    /* SBDSOFFSET is a signed 5 bit integer */
629
1.80k
    params.SBDSOFFSET = (flags & 0x7C00) >> 10;
630
1.80k
    if (params.SBDSOFFSET > 0x0f)
631
117
        params.SBDSOFFSET -= 0x20;
632
1.80k
    params.SBRTEMPLATE = flags & 0x8000;
633
634
1.80k
    if (params.SBDSOFFSET) {
635
860
        jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number, "text region has SBDSOFFSET %d", params.SBDSOFFSET);
636
860
    }
637
638
1.80k
    if (params.SBHUFF) {        /* Huffman coding */
639
        /* 7.4.3.1.2 */
640
484
        if (segment->data_length - offset < 2) {
641
3
            code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "segment too short");
642
3
            goto cleanup2;
643
3
        }
644
481
        huffman_flags = jbig2_get_uint16(segment_data + offset);
645
481
        offset += 2;
646
647
481
        if (huffman_flags & 0x8000)
648
36
            jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "reserved bit 15 of text region huffman flags is not zero");
649
1.32k
    } else {                    /* arithmetic coding */
650
651
        /* 7.4.3.1.3 */
652
1.32k
        if (segment->data_length - offset < 4) {
653
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "segment too short");
654
0
            goto cleanup2;
655
0
        }
656
1.32k
        if ((params.SBREFINE) && !(params.SBRTEMPLATE)) {
657
60
            params.sbrat[0] = segment_data[offset];
658
60
            params.sbrat[1] = segment_data[offset + 1];
659
60
            params.sbrat[2] = segment_data[offset + 2];
660
60
            params.sbrat[3] = segment_data[offset + 3];
661
60
            offset += 4;
662
60
        }
663
1.32k
    }
664
665
    /* 7.4.3.1.4 */
666
1.80k
    if (segment->data_length - offset < 4) {
667
1
        code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "segment too short");
668
1
        goto cleanup2;
669
1
    }
670
1.80k
    params.SBNUMINSTANCES = jbig2_get_uint32(segment_data + offset);
671
1.80k
    offset += 4;
672
673
1.80k
    if (params.SBHUFF) {
674
        /* 7.4.3.1.5 - Symbol ID Huffman table */
675
        /* ...this is handled in the segment body decoder */
676
677
        /* 7.4.3.1.6 - Other Huffman table selection */
678
480
        switch (huffman_flags & 0x0003) {
679
411
        case 0:                /* Table B.6 */
680
411
            params.SBHUFFFS = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_F);
681
411
            break;
682
58
        case 1:                /* Table B.7 */
683
58
            params.SBHUFFFS = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_G);
684
58
            break;
685
10
        case 3:                /* Custom table from referred segment */
686
10
            huffman_params = jbig2_find_table(ctx, segment, table_index);
687
10
            if (huffman_params == NULL) {
688
3
                code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "custom FS huffman table not found (%d)", table_index);
689
3
                goto cleanup1;
690
3
            }
691
7
            params.SBHUFFFS = jbig2_build_huffman_table(ctx, huffman_params);
692
7
            ++table_index;
693
7
            break;
694
1
        case 2:                /* invalid */
695
1
        default:
696
1
            code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "text region specified invalid FS huffman table");
697
1
            goto cleanup1;
698
0
            break;
699
480
        }
700
476
        if (params.SBHUFFFS == NULL) {
701
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate text region specified FS huffman table");
702
0
            goto cleanup1;
703
0
        }
704
705
476
        switch ((huffman_flags & 0x000c) >> 2) {
706
337
        case 0:                /* Table B.8 */
707
337
            params.SBHUFFDS = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_H);
708
337
            break;
709
75
        case 1:                /* Table B.9 */
710
75
            params.SBHUFFDS = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_I);
711
75
            break;
712
58
        case 2:                /* Table B.10 */
713
58
            params.SBHUFFDS = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_J);
714
58
            break;
715
6
        case 3:                /* Custom table from referred segment */
716
6
            huffman_params = jbig2_find_table(ctx, segment, table_index);
717
6
            if (huffman_params == NULL) {
718
0
                code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "custom DS huffman table not found (%d)", table_index);
719
0
                goto cleanup1;
720
0
            }
721
6
            params.SBHUFFDS = jbig2_build_huffman_table(ctx, huffman_params);
722
6
            ++table_index;
723
6
            break;
724
476
        }
725
476
        if (params.SBHUFFDS == NULL) {
726
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate text region specified DS huffman table");
727
0
            goto cleanup1;
728
0
        }
729
730
476
        switch ((huffman_flags & 0x0030) >> 4) {
731
59
        case 0:                /* Table B.11 */
732
59
            params.SBHUFFDT = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_K);
733
59
            break;
734
290
        case 1:                /* Table B.12 */
735
290
            params.SBHUFFDT = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_L);
736
290
            break;
737
113
        case 2:                /* Table B.13 */
738
113
            params.SBHUFFDT = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_M);
739
113
            break;
740
14
        case 3:                /* Custom table from referred segment */
741
14
            huffman_params = jbig2_find_table(ctx, segment, table_index);
742
14
            if (huffman_params == NULL) {
743
1
                code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "custom DT huffman table not found (%d)", table_index);
744
1
                goto cleanup1;
745
1
            }
746
13
            params.SBHUFFDT = jbig2_build_huffman_table(ctx, huffman_params);
747
13
            ++table_index;
748
13
            break;
749
476
        }
750
475
        if (params.SBHUFFDT == NULL) {
751
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate text region specified DT huffman table");
752
0
            goto cleanup1;
753
0
        }
754
755
475
        switch ((huffman_flags & 0x00c0) >> 6) {
756
395
        case 0:                /* Table B.14 */
757
395
            params.SBHUFFRDW = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_N);
758
395
            break;
759
59
        case 1:                /* Table B.15 */
760
59
            params.SBHUFFRDW = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_O);
761
59
            break;
762
20
        case 3:                /* Custom table from referred segment */
763
20
            huffman_params = jbig2_find_table(ctx, segment, table_index);
764
20
            if (huffman_params == NULL) {
765
0
                code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "custom RDW huffman table not found (%d)", table_index);
766
0
                goto cleanup1;
767
0
            }
768
20
            params.SBHUFFRDW = jbig2_build_huffman_table(ctx, huffman_params);
769
20
            ++table_index;
770
20
            break;
771
1
        case 2:                /* invalid */
772
1
        default:
773
1
            code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "text region specified invalid RDW huffman table");
774
1
            goto cleanup1;
775
0
            break;
776
475
        }
777
474
        if (params.SBHUFFRDW == NULL) {
778
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate text region specified RDW huffman table");
779
0
            goto cleanup1;
780
0
        }
781
782
474
        switch ((huffman_flags & 0x0300) >> 8) {
783
279
        case 0:                /* Table B.14 */
784
279
            params.SBHUFFRDH = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_N);
785
279
            break;
786
188
        case 1:                /* Table B.15 */
787
188
            params.SBHUFFRDH = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_O);
788
188
            break;
789
4
        case 3:                /* Custom table from referred segment */
790
4
            huffman_params = jbig2_find_table(ctx, segment, table_index);
791
4
            if (huffman_params == NULL) {
792
2
                code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "custom RDH huffman table not found (%d)", table_index);
793
2
                goto cleanup1;
794
2
            }
795
2
            params.SBHUFFRDH = jbig2_build_huffman_table(ctx, huffman_params);
796
2
            ++table_index;
797
2
            break;
798
3
        case 2:                /* invalid */
799
3
        default:
800
3
            code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "text region specified invalid RDH huffman table");
801
3
            goto cleanup1;
802
0
            break;
803
474
        }
804
469
        if (params.SBHUFFRDH == NULL) {
805
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate text region specified RDH huffman table");
806
0
            goto cleanup1;
807
0
        }
808
809
469
        switch ((huffman_flags & 0x0c00) >> 10) {
810
421
        case 0:                /* Table B.14 */
811
421
            params.SBHUFFRDX = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_N);
812
421
            break;
813
46
        case 1:                /* Table B.15 */
814
46
            params.SBHUFFRDX = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_O);
815
46
            break;
816
2
        case 3:                /* Custom table from referred segment */
817
2
            huffman_params = jbig2_find_table(ctx, segment, table_index);
818
2
            if (huffman_params == NULL) {
819
0
                code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "custom RDX huffman table not found (%d)", table_index);
820
0
                goto cleanup1;
821
0
            }
822
2
            params.SBHUFFRDX = jbig2_build_huffman_table(ctx, huffman_params);
823
2
            ++table_index;
824
2
            break;
825
0
        case 2:                /* invalid */
826
0
        default:
827
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "text region specified invalid RDX huffman table");
828
0
            goto cleanup1;
829
0
            break;
830
469
        }
831
469
        if (params.SBHUFFRDX == NULL) {
832
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate text region specified RDX huffman table");
833
0
            goto cleanup1;
834
0
        }
835
836
469
        switch ((huffman_flags & 0x3000) >> 12) {
837
419
        case 0:                /* Table B.14 */
838
419
            params.SBHUFFRDY = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_N);
839
419
            break;
840
43
        case 1:                /* Table B.15 */
841
43
            params.SBHUFFRDY = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_O);
842
43
            break;
843
7
        case 3:                /* Custom table from referred segment */
844
7
            huffman_params = jbig2_find_table(ctx, segment, table_index);
845
7
            if (huffman_params == NULL) {
846
2
                code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "custom RDY huffman table not found (%d)", table_index);
847
2
                goto cleanup1;
848
2
            }
849
5
            params.SBHUFFRDY = jbig2_build_huffman_table(ctx, huffman_params);
850
5
            ++table_index;
851
5
            break;
852
0
        case 2:                /* invalid */
853
0
        default:
854
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "text region specified invalid RDY huffman table");
855
0
            goto cleanup1;
856
0
            break;
857
469
        }
858
467
        if (params.SBHUFFRDY == NULL) {
859
2
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate text region specified RDY huffman table");
860
2
            goto cleanup1;
861
2
        }
862
863
465
        switch ((huffman_flags & 0x4000) >> 14) {
864
461
        case 0:                /* Table B.1 */
865
461
            params.SBHUFFRSIZE = jbig2_build_huffman_table(ctx, &jbig2_huffman_params_A);
866
461
            break;
867
4
        case 1:                /* Custom table from referred segment */
868
4
            huffman_params = jbig2_find_table(ctx, segment, table_index);
869
4
            if (huffman_params == NULL) {
870
1
                code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "custom RSIZE huffman table not found (%d)", table_index);
871
1
                goto cleanup1;
872
1
            }
873
3
            params.SBHUFFRSIZE = jbig2_build_huffman_table(ctx, huffman_params);
874
3
            ++table_index;
875
3
            break;
876
465
        }
877
464
        if (params.SBHUFFRSIZE == NULL) {
878
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate text region specified RSIZE huffman table");
879
0
            goto cleanup1;
880
0
        }
881
882
464
        if (huffman_flags & 0x8000) {
883
31
            jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "text region huffman flags bit 15 is set, contrary to spec");
884
31
        }
885
886
        /* 7.4.3.1.7 */
887
        /* For convenience this is done in the body decoder routine */
888
464
    }
889
890
1.78k
    jbig2_error(ctx, JBIG2_SEVERITY_INFO, segment->number,
891
1.78k
                "text region: %d x %d @ (%d,%d) %d symbols", region_info.width, region_info.height, region_info.x, region_info.y, params.SBNUMINSTANCES);
892
893
    /* 7.4.3.2 (2) - compose the list of symbol dictionaries */
894
1.78k
    n_dicts = jbig2_sd_count_referred(ctx, segment);
895
1.78k
    if (n_dicts == 0) {
896
370
        jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "text region refers to no symbol dictionaries");
897
1.41k
    } else {
898
1.41k
        dicts = jbig2_sd_list_referred(ctx, segment);
899
1.41k
        if (dicts == NULL) {
900
0
            code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "unable to retrieve symbol dictionaries! previous parsing error?");
901
0
            goto cleanup1;
902
1.41k
        } else {
903
1.41k
            uint32_t index;
904
905
1.41k
            if (dicts[0] == NULL) {
906
0
                code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "unable to find first referenced symbol dictionary");
907
0
                goto cleanup1;
908
0
            }
909
7.59k
            for (index = 1; index < n_dicts; index++)
910
6.17k
                if (dicts[index] == NULL) {
911
0
                    jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "unable to find all referenced symbol dictionaries");
912
0
                    n_dicts = index;
913
0
                }
914
1.41k
        }
915
1.41k
    }
916
917
    /* 7.4.3.2 (3) */
918
1.78k
    {
919
1.78k
        int stats_size = params.SBRTEMPLATE ? 1 << 10 : 1 << 13;
920
921
1.78k
        GR_stats = jbig2_new(ctx, Jbig2ArithCx, stats_size);
922
1.78k
        if (GR_stats == NULL) {
923
1
            code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "could not allocate arithmetic decoder state");
924
1
            goto cleanup1;
925
1
        }
926
1.78k
        memset(GR_stats, 0, stats_size);
927
1.78k
    }
928
929
0
    image = jbig2_image_new(ctx, region_info.width, region_info.height);
930
1.78k
    if (image == NULL) {
931
31
        code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate text region image");
932
31
        goto cleanup2;
933
31
    }
934
935
1.75k
    if (offset >= segment->data_length) {
936
0
        code = jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number, "segment too short");
937
0
        goto cleanup2;
938
0
    }
939
1.75k
    ws = jbig2_word_stream_buf_new(ctx, segment_data + offset, segment->data_length - offset);
940
1.75k
    if (ws == NULL) {
941
0
        code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate word stream when handling text region image");
942
0
        goto cleanup2;
943
0
    }
944
945
1.75k
    as = jbig2_arith_new(ctx, ws);
946
1.75k
    if (as == NULL) {
947
0
        code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate arithmetic coding context when handling text region image");
948
0
        goto cleanup3;
949
0
    }
950
951
1.75k
    if (!params.SBHUFF) {
952
1.29k
        uint8_t SBSYMCODELEN;
953
1.29k
        uint32_t index;
954
1.29k
        uint32_t SBNUMSYMS = 0;
955
956
7.55k
        for (index = 0; index < n_dicts; index++) {
957
6.25k
            SBNUMSYMS += dicts[index]->n_symbols;
958
6.25k
        }
959
960
1.29k
        params.IADT = jbig2_arith_int_ctx_new(ctx);
961
1.29k
        params.IAFS = jbig2_arith_int_ctx_new(ctx);
962
1.29k
        params.IADS = jbig2_arith_int_ctx_new(ctx);
963
1.29k
        params.IAIT = jbig2_arith_int_ctx_new(ctx);
964
1.29k
        if (params.IADT == NULL || params.IAFS == NULL || params.IADS == NULL || params.IAIT == NULL) {
965
1
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate text region image data");
966
1
            goto cleanup4;
967
1
        }
968
969
        /* Table 31 */
970
2.57k
        for (SBSYMCODELEN = 0; ((uint64_t) 1 << SBSYMCODELEN) < (uint64_t) SBNUMSYMS; SBSYMCODELEN++);
971
972
1.29k
        params.IAID = jbig2_arith_iaid_ctx_new(ctx, SBSYMCODELEN);
973
1.29k
        params.IARI = jbig2_arith_int_ctx_new(ctx);
974
1.29k
        params.IARDW = jbig2_arith_int_ctx_new(ctx);
975
1.29k
        params.IARDH = jbig2_arith_int_ctx_new(ctx);
976
1.29k
        params.IARDX = jbig2_arith_int_ctx_new(ctx);
977
1.29k
        params.IARDY = jbig2_arith_int_ctx_new(ctx);
978
1.29k
        if (params.IAID == NULL || params.IARI == NULL ||
979
1.29k
            params.IARDW == NULL || params.IARDH == NULL || params.IARDX == NULL || params.IARDY == NULL) {
980
4
            code = jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to allocate text region image data");
981
4
            goto cleanup5;
982
4
        }
983
1.29k
    }
984
985
1.75k
    code = jbig2_decode_text_region(ctx, segment, &params,
986
1.75k
                                    (const Jbig2SymbolDict * const *)dicts, n_dicts, image,
987
1.75k
                                    segment_data + offset, segment->data_length - offset, GR_stats, as, ws);
988
1.75k
    if (code < 0) {
989
98
        jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "failed to decode text region image data");
990
98
        goto cleanup5;
991
98
    }
992
993
1.65k
    if ((segment->flags & 63) == 4) {
994
        /* we have an intermediate region here. save it for later */
995
101
        segment->result = jbig2_image_reference(ctx, image);
996
1.55k
    } else {
997
        /* otherwise composite onto the page */
998
1.55k
        jbig2_error(ctx, JBIG2_SEVERITY_DEBUG, segment->number,
999
1.55k
                    "composing %dx%d decoded text region onto page at (%d, %d)", region_info.width, region_info.height, region_info.x, region_info.y);
1000
1.55k
        code = jbig2_page_add_result(ctx, &ctx->pages[ctx->current_page], image, region_info.x, region_info.y, region_info.op);
1001
1.55k
        if (code < 0)
1002
14
            jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number, "unable to add text region to page");
1003
1.55k
    }
1004
1005
1.75k
cleanup5:
1006
1.75k
    if (!params.SBHUFF) {
1007
1.29k
        jbig2_arith_iaid_ctx_free(ctx, params.IAID);
1008
1.29k
        jbig2_arith_int_ctx_free(ctx, params.IARI);
1009
1.29k
        jbig2_arith_int_ctx_free(ctx, params.IARDW);
1010
1.29k
        jbig2_arith_int_ctx_free(ctx, params.IARDH);
1011
1.29k
        jbig2_arith_int_ctx_free(ctx, params.IARDX);
1012
1.29k
        jbig2_arith_int_ctx_free(ctx, params.IARDY);
1013
1.29k
    }
1014
1015
1.75k
cleanup4:
1016
1.75k
    if (!params.SBHUFF) {
1017
1.29k
        jbig2_arith_int_ctx_free(ctx, params.IADT);
1018
1.29k
        jbig2_arith_int_ctx_free(ctx, params.IAFS);
1019
1.29k
        jbig2_arith_int_ctx_free(ctx, params.IADS);
1020
1.29k
        jbig2_arith_int_ctx_free(ctx, params.IAIT);
1021
1.29k
    }
1022
1023
1.75k
cleanup3:
1024
1.75k
    jbig2_free(ctx->allocator, as);
1025
1.75k
    jbig2_word_stream_buf_free(ctx, ws);
1026
1027
1.79k
cleanup2:
1028
1.79k
    jbig2_free(ctx->allocator, GR_stats);
1029
1.79k
    jbig2_image_release(ctx, image);
1030
1031
1.81k
cleanup1:
1032
1.81k
    if (params.SBHUFF) {
1033
484
        jbig2_release_huffman_table(ctx, params.SBHUFFFS);
1034
484
        jbig2_release_huffman_table(ctx, params.SBHUFFDS);
1035
484
        jbig2_release_huffman_table(ctx, params.SBHUFFDT);
1036
484
        jbig2_release_huffman_table(ctx, params.SBHUFFRDX);
1037
484
        jbig2_release_huffman_table(ctx, params.SBHUFFRDY);
1038
484
        jbig2_release_huffman_table(ctx, params.SBHUFFRDW);
1039
484
        jbig2_release_huffman_table(ctx, params.SBHUFFRDH);
1040
484
        jbig2_release_huffman_table(ctx, params.SBHUFFRSIZE);
1041
484
    }
1042
1.81k
    jbig2_free(ctx->allocator, dicts);
1043
1044
1.81k
    return code;
1045
1.79k
}