Coverage Report

Created: 2023-06-07 06:03

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