Coverage Report

Created: 2024-06-18 06:42

/src/libjpeg-turbo/jdapimin.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * jdapimin.c
3
 *
4
 * This file was part of the Independent JPEG Group's software:
5
 * Copyright (C) 1994-1998, Thomas G. Lane.
6
 * Lossless JPEG Modifications:
7
 * Copyright (C) 1999, Ken Murchison.
8
 * libjpeg-turbo Modifications:
9
 * Copyright (C) 2016, 2022, 2024, D. R. Commander.
10
 * For conditions of distribution and use, see the accompanying README.ijg
11
 * file.
12
 *
13
 * This file contains application interface code for the decompression half
14
 * of the JPEG library.  These are the "minimum" API routines that may be
15
 * needed in either the normal full-decompression case or the
16
 * transcoding-only case.
17
 *
18
 * Most of the routines intended to be called directly by an application
19
 * are in this file or in jdapistd.c.  But also see jcomapi.c for routines
20
 * shared by compression and decompression, and jdtrans.c for the transcoding
21
 * case.
22
 */
23
24
#define JPEG_INTERNALS
25
#include "jinclude.h"
26
#include "jpeglib.h"
27
#include "jdmaster.h"
28
29
30
/*
31
 * Initialization of a JPEG decompression object.
32
 * The error manager must already be set up (in case memory manager fails).
33
 */
34
35
GLOBAL(void)
36
jpeg_CreateDecompress(j_decompress_ptr cinfo, int version, size_t structsize)
37
24.3k
{
38
24.3k
  int i;
39
40
  /* Guard against version mismatches between library and caller. */
41
24.3k
  cinfo->mem = NULL;            /* so jpeg_destroy knows mem mgr not called */
42
24.3k
  if (version != JPEG_LIB_VERSION)
43
0
    ERREXIT2(cinfo, JERR_BAD_LIB_VERSION, JPEG_LIB_VERSION, version);
44
24.3k
  if (structsize != sizeof(struct jpeg_decompress_struct))
45
0
    ERREXIT2(cinfo, JERR_BAD_STRUCT_SIZE,
46
24.3k
             (int)sizeof(struct jpeg_decompress_struct), (int)structsize);
47
48
  /* For debugging purposes, we zero the whole master structure.
49
   * But the application has already set the err pointer, and may have set
50
   * client_data, so we have to save and restore those fields.
51
   * Note: if application hasn't set client_data, tools like Purify may
52
   * complain here.
53
   */
54
24.3k
  {
55
24.3k
    struct jpeg_error_mgr *err = cinfo->err;
56
24.3k
    void *client_data = cinfo->client_data; /* ignore Purify complaint here */
57
24.3k
    memset(cinfo, 0, sizeof(struct jpeg_decompress_struct));
58
24.3k
    cinfo->err = err;
59
24.3k
    cinfo->client_data = client_data;
60
24.3k
  }
61
24.3k
  cinfo->is_decompressor = TRUE;
62
63
  /* Initialize a memory manager instance for this object */
64
24.3k
  jinit_memory_mgr((j_common_ptr)cinfo);
65
66
  /* Zero out pointers to permanent structures. */
67
24.3k
  cinfo->progress = NULL;
68
24.3k
  cinfo->src = NULL;
69
70
121k
  for (i = 0; i < NUM_QUANT_TBLS; i++)
71
97.2k
    cinfo->quant_tbl_ptrs[i] = NULL;
72
73
121k
  for (i = 0; i < NUM_HUFF_TBLS; i++) {
74
97.2k
    cinfo->dc_huff_tbl_ptrs[i] = NULL;
75
97.2k
    cinfo->ac_huff_tbl_ptrs[i] = NULL;
76
97.2k
  }
77
78
  /* Initialize marker processor so application can override methods
79
   * for COM, APPn markers before calling jpeg_read_header.
80
   */
81
24.3k
  cinfo->marker_list = NULL;
82
24.3k
  jinit_marker_reader(cinfo);
83
84
  /* And initialize the overall input controller. */
85
24.3k
  jinit_input_controller(cinfo);
86
87
24.3k
  cinfo->data_precision = BITS_IN_JSAMPLE;
88
89
  /* OK, I'm ready */
90
24.3k
  cinfo->global_state = DSTATE_START;
91
92
  /* The master struct is used to store extension parameters, so we allocate it
93
   * here.
94
   */
95
24.3k
  cinfo->master = (struct jpeg_decomp_master *)
96
24.3k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
97
24.3k
                                sizeof(my_decomp_master));
98
24.3k
  memset(cinfo->master, 0, sizeof(my_decomp_master));
99
24.3k
}
100
101
102
/*
103
 * Destruction of a JPEG decompression object
104
 */
105
106
GLOBAL(void)
107
jpeg_destroy_decompress(j_decompress_ptr cinfo)
108
0
{
109
0
  jpeg_destroy((j_common_ptr)cinfo); /* use common routine */
110
0
}
111
112
113
/*
114
 * Abort processing of a JPEG decompression operation,
115
 * but don't destroy the object itself.
116
 */
117
118
GLOBAL(void)
119
jpeg_abort_decompress(j_decompress_ptr cinfo)
120
0
{
121
0
  jpeg_abort((j_common_ptr)cinfo); /* use common routine */
122
0
}
123
124
125
/*
126
 * Set default decompression parameters.
127
 */
128
129
LOCAL(void)
130
default_decompress_parms(j_decompress_ptr cinfo)
131
56.5k
{
132
  /* Guess the input colorspace, and set output colorspace accordingly. */
133
  /* (Wish JPEG committee had provided a real way to specify this...) */
134
  /* Note application may override our guesses. */
135
56.5k
  switch (cinfo->num_components) {
136
43.9k
  case 1:
137
43.9k
    cinfo->jpeg_color_space = JCS_GRAYSCALE;
138
43.9k
    cinfo->out_color_space = JCS_GRAYSCALE;
139
43.9k
    break;
140
141
11.7k
  case 3:
142
11.7k
    if (cinfo->saw_JFIF_marker) {
143
120
      cinfo->jpeg_color_space = JCS_YCbCr; /* JFIF implies YCbCr */
144
11.6k
    } else if (cinfo->saw_Adobe_marker) {
145
747
      switch (cinfo->Adobe_transform) {
146
258
      case 0:
147
258
        cinfo->jpeg_color_space = JCS_RGB;
148
258
        break;
149
289
      case 1:
150
289
        cinfo->jpeg_color_space = JCS_YCbCr;
151
289
        break;
152
200
      default:
153
200
        WARNMS1(cinfo, JWRN_ADOBE_XFORM, cinfo->Adobe_transform);
154
200
        cinfo->jpeg_color_space = JCS_YCbCr; /* assume it's YCbCr */
155
200
        break;
156
747
      }
157
10.8k
    } else {
158
      /* Saw no special markers, try to guess from the component IDs */
159
10.8k
      int cid0 = cinfo->comp_info[0].component_id;
160
10.8k
      int cid1 = cinfo->comp_info[1].component_id;
161
10.8k
      int cid2 = cinfo->comp_info[2].component_id;
162
163
10.8k
      if (cid0 == 1 && cid1 == 2 && cid2 == 3) {
164
1.40k
        if (cinfo->master->lossless)
165
301
          cinfo->jpeg_color_space = JCS_RGB; /* assume RGB w/out marker */
166
1.10k
        else
167
1.10k
          cinfo->jpeg_color_space = JCS_YCbCr; /* assume JFIF w/out marker */
168
9.45k
      } else if (cid0 == 82 && cid1 == 71 && cid2 == 66)
169
0
        cinfo->jpeg_color_space = JCS_RGB; /* ASCII 'R', 'G', 'B' */
170
9.45k
      else {
171
9.45k
        TRACEMS3(cinfo, 1, JTRC_UNKNOWN_IDS, cid0, cid1, cid2);
172
9.45k
        if (cinfo->master->lossless)
173
4.34k
          cinfo->jpeg_color_space = JCS_RGB; /* assume it's RGB */
174
5.10k
        else
175
5.10k
          cinfo->jpeg_color_space = JCS_YCbCr; /* assume it's YCbCr */
176
9.45k
      }
177
10.8k
    }
178
    /* Always guess RGB is proper output colorspace. */
179
11.7k
    cinfo->out_color_space = JCS_RGB;
180
11.7k
    break;
181
182
884
  case 4:
183
884
    if (cinfo->saw_Adobe_marker) {
184
258
      switch (cinfo->Adobe_transform) {
185
80
      case 0:
186
80
        cinfo->jpeg_color_space = JCS_CMYK;
187
80
        break;
188
82
      case 2:
189
82
        cinfo->jpeg_color_space = JCS_YCCK;
190
82
        break;
191
96
      default:
192
96
        WARNMS1(cinfo, JWRN_ADOBE_XFORM, cinfo->Adobe_transform);
193
96
        cinfo->jpeg_color_space = JCS_YCCK; /* assume it's YCCK */
194
96
        break;
195
258
      }
196
626
    } else {
197
      /* No special markers, assume straight CMYK. */
198
626
      cinfo->jpeg_color_space = JCS_CMYK;
199
626
    }
200
884
    cinfo->out_color_space = JCS_CMYK;
201
884
    break;
202
203
19
  default:
204
19
    cinfo->jpeg_color_space = JCS_UNKNOWN;
205
19
    cinfo->out_color_space = JCS_UNKNOWN;
206
19
    break;
207
56.5k
  }
208
209
  /* Set defaults for other decompression parameters. */
210
56.5k
  cinfo->scale_num = 1;         /* 1:1 scaling */
211
56.5k
  cinfo->scale_denom = 1;
212
56.5k
  cinfo->output_gamma = 1.0;
213
56.5k
  cinfo->buffered_image = FALSE;
214
56.5k
  cinfo->raw_data_out = FALSE;
215
56.5k
  cinfo->dct_method = JDCT_DEFAULT;
216
56.5k
  cinfo->do_fancy_upsampling = TRUE;
217
56.5k
  cinfo->do_block_smoothing = TRUE;
218
56.5k
  cinfo->quantize_colors = FALSE;
219
  /* We set these in case application only sets quantize_colors. */
220
56.5k
  cinfo->dither_mode = JDITHER_FS;
221
56.5k
#ifdef QUANT_2PASS_SUPPORTED
222
56.5k
  cinfo->two_pass_quantize = TRUE;
223
#else
224
  cinfo->two_pass_quantize = FALSE;
225
#endif
226
56.5k
  cinfo->desired_number_of_colors = 256;
227
56.5k
  cinfo->colormap = NULL;
228
  /* Initialize for no mode change in buffered-image mode. */
229
56.5k
  cinfo->enable_1pass_quant = FALSE;
230
56.5k
  cinfo->enable_external_quant = FALSE;
231
56.5k
  cinfo->enable_2pass_quant = FALSE;
232
56.5k
}
233
234
235
/*
236
 * Decompression startup: read start of JPEG datastream to see what's there.
237
 * Need only initialize JPEG object and supply a data source before calling.
238
 *
239
 * This routine will read as far as the first SOS marker (ie, actual start of
240
 * compressed data), and will save all tables and parameters in the JPEG
241
 * object.  It will also initialize the decompression parameters to default
242
 * values, and finally return JPEG_HEADER_OK.  On return, the application may
243
 * adjust the decompression parameters and then call jpeg_start_decompress.
244
 * (Or, if the application only wanted to determine the image parameters,
245
 * the data need not be decompressed.  In that case, call jpeg_abort or
246
 * jpeg_destroy to release any temporary space.)
247
 * If an abbreviated (tables only) datastream is presented, the routine will
248
 * return JPEG_HEADER_TABLES_ONLY upon reaching EOI.  The application may then
249
 * re-use the JPEG object to read the abbreviated image datastream(s).
250
 * It is unnecessary (but OK) to call jpeg_abort in this case.
251
 * The JPEG_SUSPENDED return code only occurs if the data source module
252
 * requests suspension of the decompressor.  In this case the application
253
 * should load more source data and then re-call jpeg_read_header to resume
254
 * processing.
255
 * If a non-suspending data source is used and require_image is TRUE, then the
256
 * return code need not be inspected since only JPEG_HEADER_OK is possible.
257
 *
258
 * This routine is now just a front end to jpeg_consume_input, with some
259
 * extra error checking.
260
 */
261
262
GLOBAL(int)
263
jpeg_read_header(j_decompress_ptr cinfo, boolean require_image)
264
137k
{
265
137k
  int retcode;
266
267
137k
  if (cinfo->global_state != DSTATE_START &&
268
137k
      cinfo->global_state != DSTATE_INHEADER)
269
0
    ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
270
271
137k
  retcode = jpeg_consume_input(cinfo);
272
273
137k
  switch (retcode) {
274
56.5k
  case JPEG_REACHED_SOS:
275
56.5k
    retcode = JPEG_HEADER_OK;
276
56.5k
    break;
277
6.15k
  case JPEG_REACHED_EOI:
278
6.15k
    if (require_image)          /* Complain if application wanted an image */
279
6.15k
      ERREXIT(cinfo, JERR_NO_IMAGE);
280
    /* Reset to start state; it would be safer to require the application to
281
     * call jpeg_abort, but we can't change it now for compatibility reasons.
282
     * A side effect is to free any temporary memory (there shouldn't be any).
283
     */
284
6.15k
    jpeg_abort((j_common_ptr)cinfo); /* sets state = DSTATE_START */
285
6.15k
    retcode = JPEG_HEADER_TABLES_ONLY;
286
6.15k
    break;
287
0
  case JPEG_SUSPENDED:
288
    /* no work */
289
0
    break;
290
137k
  }
291
292
56.5k
  return retcode;
293
137k
}
294
295
296
/*
297
 * Consume data in advance of what the decompressor requires.
298
 * This can be called at any time once the decompressor object has
299
 * been created and a data source has been set up.
300
 *
301
 * This routine is essentially a state machine that handles a couple
302
 * of critical state-transition actions, namely initial setup and
303
 * transition from header scanning to ready-for-start_decompress.
304
 * All the actual input is done via the input controller's consume_input
305
 * method.
306
 */
307
308
GLOBAL(int)
309
jpeg_consume_input(j_decompress_ptr cinfo)
310
137k
{
311
137k
  int retcode = JPEG_SUSPENDED;
312
313
  /* NB: every possible DSTATE value should be listed in this switch */
314
137k
  switch (cinfo->global_state) {
315
137k
  case DSTATE_START:
316
    /* Start-of-datastream actions: reset appropriate modules */
317
137k
    (*cinfo->inputctl->reset_input_controller) (cinfo);
318
    /* Initialize application's data source module */
319
137k
    (*cinfo->src->init_source) (cinfo);
320
137k
    cinfo->global_state = DSTATE_INHEADER;
321
    FALLTHROUGH                 /*FALLTHROUGH*/
322
137k
  case DSTATE_INHEADER:
323
137k
    retcode = (*cinfo->inputctl->consume_input) (cinfo);
324
137k
    if (retcode == JPEG_REACHED_SOS) { /* Found SOS, prepare to decompress */
325
      /* Set up default parameters based on header data */
326
56.5k
      default_decompress_parms(cinfo);
327
      /* Set global state: ready for start_decompress */
328
56.5k
      cinfo->global_state = DSTATE_READY;
329
56.5k
    }
330
137k
    break;
331
0
  case DSTATE_READY:
332
    /* Can't advance past first SOS until start_decompress is called */
333
0
    retcode = JPEG_REACHED_SOS;
334
0
    break;
335
0
  case DSTATE_PRELOAD:
336
0
  case DSTATE_PRESCAN:
337
0
  case DSTATE_SCANNING:
338
0
  case DSTATE_RAW_OK:
339
0
  case DSTATE_BUFIMAGE:
340
0
  case DSTATE_BUFPOST:
341
0
  case DSTATE_STOPPING:
342
0
    retcode = (*cinfo->inputctl->consume_input) (cinfo);
343
0
    break;
344
0
  default:
345
0
    ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
346
137k
  }
347
62.7k
  return retcode;
348
137k
}
349
350
351
/*
352
 * Have we finished reading the input file?
353
 */
354
355
GLOBAL(boolean)
356
jpeg_input_complete(j_decompress_ptr cinfo)
357
0
{
358
  /* Check for valid jpeg object */
359
0
  if (cinfo->global_state < DSTATE_START ||
360
0
      cinfo->global_state > DSTATE_STOPPING)
361
0
    ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
362
0
  return cinfo->inputctl->eoi_reached;
363
0
}
364
365
366
/*
367
 * Is there more than one scan?
368
 */
369
370
GLOBAL(boolean)
371
jpeg_has_multiple_scans(j_decompress_ptr cinfo)
372
31.9k
{
373
  /* Only valid after jpeg_read_header completes */
374
31.9k
  if (cinfo->global_state < DSTATE_READY ||
375
31.9k
      cinfo->global_state > DSTATE_STOPPING)
376
0
    ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
377
31.9k
  return cinfo->inputctl->has_multiple_scans;
378
31.9k
}
379
380
381
/*
382
 * Finish JPEG decompression.
383
 *
384
 * This will normally just verify the file trailer and release temp storage.
385
 *
386
 * Returns FALSE if suspended.  The return value need be inspected only if
387
 * a suspending data source is used.
388
 */
389
390
GLOBAL(boolean)
391
jpeg_finish_decompress(j_decompress_ptr cinfo)
392
20.7k
{
393
20.7k
  if ((cinfo->global_state == DSTATE_SCANNING ||
394
20.7k
       cinfo->global_state == DSTATE_RAW_OK) && !cinfo->buffered_image) {
395
    /* Terminate final pass of non-buffered mode */
396
20.7k
    if (cinfo->output_scanline < cinfo->output_height)
397
0
      ERREXIT(cinfo, JERR_TOO_LITTLE_DATA);
398
20.7k
    (*cinfo->master->finish_output_pass) (cinfo);
399
20.7k
    cinfo->global_state = DSTATE_STOPPING;
400
20.7k
  } else if (cinfo->global_state == DSTATE_BUFIMAGE) {
401
    /* Finishing after a buffered-image operation */
402
0
    cinfo->global_state = DSTATE_STOPPING;
403
0
  } else if (cinfo->global_state != DSTATE_STOPPING) {
404
    /* STOPPING = repeat call after a suspension, anything else is error */
405
0
    ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
406
0
  }
407
  /* Read until EOI */
408
29.0k
  while (!cinfo->inputctl->eoi_reached) {
409
8.33k
    if ((*cinfo->inputctl->consume_input) (cinfo) == JPEG_SUSPENDED)
410
0
      return FALSE;             /* Suspend, come back later */
411
8.33k
  }
412
  /* Do final cleanup */
413
20.7k
  (*cinfo->src->term_source) (cinfo);
414
  /* We can use jpeg_abort to release memory and reset global_state */
415
20.7k
  jpeg_abort((j_common_ptr)cinfo);
416
20.7k
  return TRUE;
417
20.7k
}