Coverage Report

Created: 2023-06-07 06:03

/src/libjpeg-turbo.2.1.x/rdtarga.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * rdtarga.c
3
 *
4
 * This file was part of the Independent JPEG Group's software:
5
 * Copyright (C) 1991-1996, Thomas G. Lane.
6
 * Modified 2017 by Guido Vollbeding.
7
 * libjpeg-turbo Modifications:
8
 * Copyright (C) 2018, 2021-2022, D. R. Commander.
9
 * For conditions of distribution and use, see the accompanying README.ijg
10
 * file.
11
 *
12
 * This file contains routines to read input images in Targa format.
13
 *
14
 * These routines may need modification for non-Unix environments or
15
 * specialized applications.  As they stand, they assume input from
16
 * an ordinary stdio stream.  They further assume that reading begins
17
 * at the start of the file; start_input may need work if the
18
 * user interface has already read some data (e.g., to determine that
19
 * the file is indeed Targa format).
20
 *
21
 * Based on code contributed by Lee Daniel Crocker.
22
 */
23
24
#include "cdjpeg.h"             /* Common decls for cjpeg/djpeg applications */
25
26
#ifdef TARGA_SUPPORTED
27
28
29
/* Macros to deal with unsigned chars as efficiently as compiler allows */
30
31
typedef unsigned char U_CHAR;
32
415M
#define UCH(x)  ((int)(x))
33
34
35
#define ReadOK(file, buffer, len) \
36
15.3k
  (fread(buffer, 1, len, file) == ((size_t)(len)))
37
38
39
/* Private version of data source object */
40
41
typedef struct _tga_source_struct *tga_source_ptr;
42
43
typedef struct _tga_source_struct {
44
  struct cjpeg_source_struct pub; /* public fields */
45
46
  j_compress_ptr cinfo;         /* back link saves passing separate parm */
47
48
  JSAMPARRAY colormap;          /* Targa colormap (converted to my format) */
49
50
  jvirt_sarray_ptr whole_image; /* Needed if funny input row order */
51
  JDIMENSION current_row;       /* Current logical row number to read */
52
53
  /* Pointer to routine to extract next Targa pixel from input file */
54
  void (*read_pixel) (tga_source_ptr sinfo);
55
56
  /* Result of read_pixel is delivered here: */
57
  U_CHAR tga_pixel[4];
58
59
  int pixel_size;               /* Bytes per Targa pixel (1 to 4) */
60
  int cmap_length;              /* colormap length */
61
62
  /* State info for reading RLE-coded pixels; both counts must be init to 0 */
63
  int block_count;              /* # of pixels remaining in RLE block */
64
  int dup_pixel_count;          /* # of times to duplicate previous pixel */
65
66
  /* This saves the correct pixel-row-expansion method for preload_image */
67
  JDIMENSION (*get_pixel_rows) (j_compress_ptr cinfo, cjpeg_source_ptr sinfo);
68
} tga_source_struct;
69
70
71
/* For expanding 5-bit pixel values to 8-bit with best rounding */
72
73
static const UINT8 c5to8bits[32] = {
74
    0,   8,  16,  25,  33,  41,  49,  58,
75
   66,  74,  82,  90,  99, 107, 115, 123,
76
  132, 140, 148, 156, 165, 173, 181, 189,
77
  197, 206, 214, 222, 230, 239, 247, 255
78
};
79
80
81
82
LOCAL(int)
83
read_byte(tga_source_ptr sinfo)
84
/* Read next byte from Targa file */
85
21.9M
{
86
21.9M
  register FILE *infile = sinfo->pub.input_file;
87
21.9M
  register int c;
88
89
21.9M
  if ((c = getc(infile)) == EOF)
90
2.03k
    ERREXIT(sinfo->cinfo, JERR_INPUT_EOF);
91
21.9M
  return c;
92
21.9M
}
93
94
95
LOCAL(void)
96
read_colormap(tga_source_ptr sinfo, int cmaplen, int mapentrysize)
97
/* Read the colormap from a Targa file */
98
746
{
99
746
  int i;
100
101
  /* Presently only handles 24-bit BGR format */
102
746
  if (mapentrysize != 24)
103
78
    ERREXIT(sinfo->cinfo, JERR_TGA_BADCMAP);
104
105
26.0k
  for (i = 0; i < cmaplen; i++) {
106
25.2k
    sinfo->colormap[2][i] = (JSAMPLE)read_byte(sinfo);
107
25.2k
    sinfo->colormap[1][i] = (JSAMPLE)read_byte(sinfo);
108
25.2k
    sinfo->colormap[0][i] = (JSAMPLE)read_byte(sinfo);
109
25.2k
  }
110
746
}
111
112
113
/*
114
 * read_pixel methods: get a single pixel from Targa file into tga_pixel[]
115
 */
116
117
METHODDEF(void)
118
read_non_rle_pixel(tga_source_ptr sinfo)
119
/* Read one Targa pixel from the input file; no RLE expansion */
120
11.9k
{
121
11.9k
  register int i;
122
123
25.4k
  for (i = 0; i < sinfo->pixel_size; i++) {
124
13.4k
    sinfo->tga_pixel[i] = (U_CHAR)read_byte(sinfo);
125
13.4k
  }
126
11.9k
}
127
128
129
METHODDEF(void)
130
read_rle_pixel(tga_source_ptr sinfo)
131
/* Read one Targa pixel from the input file, expanding RLE data as needed */
132
246M
{
133
246M
  register int i;
134
135
  /* Duplicate previously read pixel? */
136
246M
  if (sinfo->dup_pixel_count > 0) {
137
233M
    sinfo->dup_pixel_count--;
138
233M
    return;
139
233M
  }
140
141
  /* Time to read RLE block header? */
142
13.8M
  if (--sinfo->block_count < 0) { /* decrement pixels remaining in block */
143
2.80M
    i = read_byte(sinfo);
144
2.80M
    if (i & 0x80) {             /* Start of duplicate-pixel block? */
145
2.09M
      sinfo->dup_pixel_count = i & 0x7F; /* number of dups after this one */
146
2.09M
      sinfo->block_count = 0;   /* then read new block header */
147
2.09M
    } else {
148
713k
      sinfo->block_count = i & 0x7F; /* number of pixels after this one */
149
713k
    }
150
2.80M
  }
151
152
  /* Read next pixel */
153
32.8M
  for (i = 0; i < sinfo->pixel_size; i++) {
154
19.0M
    sinfo->tga_pixel[i] = (U_CHAR)read_byte(sinfo);
155
19.0M
  }
156
13.8M
}
157
158
159
/*
160
 * Read one row of pixels.
161
 *
162
 * We provide several different versions depending on input file format.
163
 */
164
165
166
METHODDEF(JDIMENSION)
167
get_8bit_gray_row(j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
168
/* This version is for reading 8-bit grayscale pixels */
169
936k
{
170
936k
  tga_source_ptr source = (tga_source_ptr)sinfo;
171
936k
  register JSAMPROW ptr;
172
936k
  register JDIMENSION col;
173
174
936k
  ptr = source->pub.buffer[0];
175
21.0M
  for (col = cinfo->image_width; col > 0; col--) {
176
20.1M
    (*source->read_pixel) (source); /* Load next pixel into tga_pixel */
177
20.1M
    *ptr++ = (JSAMPLE)UCH(source->tga_pixel[0]);
178
20.1M
  }
179
936k
  return 1;
180
936k
}
181
182
METHODDEF(JDIMENSION)
183
get_8bit_row(j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
184
/* This version is for reading 8-bit colormap indexes */
185
4.85k
{
186
4.85k
  tga_source_ptr source = (tga_source_ptr)sinfo;
187
4.85k
  register int t;
188
4.85k
  register JSAMPROW ptr;
189
4.85k
  register JDIMENSION col;
190
4.85k
  register JSAMPARRAY colormap = source->colormap;
191
4.85k
  int cmaplen = source->cmap_length;
192
193
4.85k
  ptr = source->pub.buffer[0];
194
72.0M
  for (col = cinfo->image_width; col > 0; col--) {
195
71.9M
    (*source->read_pixel) (source); /* Load next pixel into tga_pixel */
196
71.9M
    t = UCH(source->tga_pixel[0]);
197
71.9M
    if (t >= cmaplen)
198
50
      ERREXIT(cinfo, JERR_TGA_BADPARMS);
199
71.9M
    *ptr++ = colormap[0][t];
200
71.9M
    *ptr++ = colormap[1][t];
201
71.9M
    *ptr++ = colormap[2][t];
202
71.9M
  }
203
4.85k
  return 1;
204
4.85k
}
205
206
METHODDEF(JDIMENSION)
207
get_16bit_row(j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
208
/* This version is for reading 16-bit pixels */
209
5.59M
{
210
5.59M
  tga_source_ptr source = (tga_source_ptr)sinfo;
211
5.59M
  register int t;
212
5.59M
  register JSAMPROW ptr;
213
5.59M
  register JDIMENSION col;
214
215
5.59M
  ptr = source->pub.buffer[0];
216
146M
  for (col = cinfo->image_width; col > 0; col--) {
217
141M
    (*source->read_pixel) (source); /* Load next pixel into tga_pixel */
218
141M
    t = UCH(source->tga_pixel[0]);
219
141M
    t += UCH(source->tga_pixel[1]) << 8;
220
    /* We expand 5 bit data to 8 bit sample width.
221
     * The format of the 16-bit (LSB first) input word is
222
     *     xRRRRRGGGGGBBBBB
223
     */
224
141M
    ptr[2] = (JSAMPLE)c5to8bits[t & 0x1F];
225
141M
    t >>= 5;
226
141M
    ptr[1] = (JSAMPLE)c5to8bits[t & 0x1F];
227
141M
    t >>= 5;
228
141M
    ptr[0] = (JSAMPLE)c5to8bits[t & 0x1F];
229
141M
    ptr += 3;
230
141M
  }
231
5.59M
  return 1;
232
5.59M
}
233
234
METHODDEF(JDIMENSION)
235
get_24bit_row(j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
236
/* This version is for reading 24-bit pixels */
237
322k
{
238
322k
  tga_source_ptr source = (tga_source_ptr)sinfo;
239
322k
  register JSAMPROW ptr;
240
322k
  register JDIMENSION col;
241
242
322k
  ptr = source->pub.buffer[0];
243
14.0M
  for (col = cinfo->image_width; col > 0; col--) {
244
13.7M
    (*source->read_pixel) (source); /* Load next pixel into tga_pixel */
245
13.7M
    *ptr++ = (JSAMPLE)UCH(source->tga_pixel[2]); /* change BGR to RGB order */
246
13.7M
    *ptr++ = (JSAMPLE)UCH(source->tga_pixel[1]);
247
13.7M
    *ptr++ = (JSAMPLE)UCH(source->tga_pixel[0]);
248
13.7M
  }
249
322k
  return 1;
250
322k
}
251
252
/*
253
 * Targa also defines a 32-bit pixel format with order B,G,R,A.
254
 * We presently ignore the attribute byte, so the code for reading
255
 * these pixels is identical to the 24-bit routine above.
256
 * This works because the actual pixel length is only known to read_pixel.
257
 */
258
259
464
#define get_32bit_row  get_24bit_row
260
261
262
/*
263
 * This method is for re-reading the input data in standard top-down
264
 * row order.  The entire image has already been read into whole_image
265
 * with proper conversion of pixel format, but it's in a funny row order.
266
 */
267
268
METHODDEF(JDIMENSION)
269
get_memory_row(j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
270
2.52M
{
271
2.52M
  tga_source_ptr source = (tga_source_ptr)sinfo;
272
2.52M
  JDIMENSION source_row;
273
274
  /* Compute row of source that maps to current_row of normal order */
275
  /* For now, assume image is bottom-up and not interlaced. */
276
  /* NEEDS WORK to support interlaced images! */
277
2.52M
  source_row = cinfo->image_height - source->current_row - 1;
278
279
  /* Fetch that row from virtual array */
280
2.52M
  source->pub.buffer = (*cinfo->mem->access_virt_sarray)
281
2.52M
    ((j_common_ptr)cinfo, source->whole_image,
282
2.52M
     source_row, (JDIMENSION)1, FALSE);
283
284
2.52M
  source->current_row++;
285
2.52M
  return 1;
286
2.52M
}
287
288
289
/*
290
 * This method loads the image into whole_image during the first call on
291
 * get_pixel_rows.  The get_pixel_rows pointer is then adjusted to call
292
 * get_memory_row on subsequent calls.
293
 */
294
295
METHODDEF(JDIMENSION)
296
preload_image(j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
297
2.92k
{
298
2.92k
  tga_source_ptr source = (tga_source_ptr)sinfo;
299
2.92k
  JDIMENSION row;
300
2.92k
  cd_progress_ptr progress = (cd_progress_ptr)cinfo->progress;
301
302
  /* Read the data into a virtual array in input-file row order. */
303
2.60M
  for (row = 0; row < cinfo->image_height; row++) {
304
2.59M
    if (progress != NULL) {
305
0
      progress->pub.pass_counter = (long)row;
306
0
      progress->pub.pass_limit = (long)cinfo->image_height;
307
0
      (*progress->pub.progress_monitor) ((j_common_ptr)cinfo);
308
0
    }
309
2.59M
    source->pub.buffer = (*cinfo->mem->access_virt_sarray)
310
2.59M
      ((j_common_ptr)cinfo, source->whole_image, row, (JDIMENSION)1, TRUE);
311
2.59M
    (*source->get_pixel_rows) (cinfo, sinfo);
312
2.59M
  }
313
2.92k
  if (progress != NULL)
314
0
    progress->completed_extra_passes++;
315
316
  /* Set up to read from the virtual array in unscrambled order */
317
2.92k
  source->pub.get_pixel_rows = get_memory_row;
318
2.92k
  source->current_row = 0;
319
  /* And read the first row */
320
2.92k
  return get_memory_row(cinfo, sinfo);
321
2.92k
}
322
323
324
/*
325
 * Read the file header; return image size and component count.
326
 */
327
328
METHODDEF(void)
329
start_input_tga(j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
330
15.3k
{
331
15.3k
  tga_source_ptr source = (tga_source_ptr)sinfo;
332
15.3k
  U_CHAR targaheader[18];
333
15.3k
  int idlen, cmaptype, subtype, flags, interlace_type, components;
334
15.3k
  unsigned int width, height, maplen;
335
15.3k
  boolean is_bottom_up;
336
337
15.3k
#define GET_2B(offset) \
338
46.8k
  ((unsigned int)UCH(targaheader[offset]) + \
339
46.8k
   (((unsigned int)UCH(targaheader[offset + 1])) << 8))
340
341
15.3k
  if (!ReadOK(source->pub.input_file, targaheader, 18))
342
3.93k
    ERREXIT(cinfo, JERR_INPUT_EOF);
343
344
  /* Pretend "15-bit" pixels are 16-bit --- we ignore attribute bit anyway */
345
15.3k
  if (targaheader[16] == 15)
346
1.06k
    targaheader[16] = 16;
347
348
15.3k
  idlen = UCH(targaheader[0]);
349
15.3k
  cmaptype = UCH(targaheader[1]);
350
15.3k
  subtype = UCH(targaheader[2]);
351
15.3k
  maplen = GET_2B(5);
352
15.3k
  width = GET_2B(12);
353
15.3k
  height = GET_2B(14);
354
15.3k
  source->pixel_size = UCH(targaheader[16]) >> 3;
355
15.3k
  flags = UCH(targaheader[17]); /* Image Descriptor byte */
356
357
15.3k
  is_bottom_up = ((flags & 0x20) == 0); /* bit 5 set => top-down */
358
15.3k
  interlace_type = flags >> 6;  /* bits 6/7 are interlace code */
359
360
15.3k
  if (cmaptype > 1 ||           /* cmaptype must be 0 or 1 */
361
15.3k
      source->pixel_size < 1 || source->pixel_size > 4 ||
362
15.3k
      (UCH(targaheader[16]) & 7) != 0 || /* bits/pixel must be multiple of 8 */
363
15.3k
      interlace_type != 0 ||      /* currently don't allow interlaced image */
364
15.3k
      width == 0 || height == 0)  /* image width/height must be non-zero */
365
5.32k
    ERREXIT(cinfo, JERR_TGA_BADPARMS);
366
15.3k
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
367
15.3k
  if (sinfo->max_pixels &&
368
15.3k
      (unsigned long long)width * height > sinfo->max_pixels)
369
208
    ERREXIT(cinfo, JERR_WIDTH_OVERFLOW);
370
15.3k
#endif
371
372
15.3k
  if (subtype > 8) {
373
    /* It's an RLE-coded file */
374
4.89k
    source->read_pixel = read_rle_pixel;
375
4.89k
    source->block_count = source->dup_pixel_count = 0;
376
4.89k
    subtype -= 8;
377
10.4k
  } else {
378
    /* Non-RLE file */
379
10.4k
    source->read_pixel = read_non_rle_pixel;
380
10.4k
  }
381
382
  /* Now should have subtype 1, 2, or 3 */
383
15.3k
  components = 3;               /* until proven different */
384
15.3k
  cinfo->in_color_space = JCS_RGB;
385
386
15.3k
  switch (subtype) {
387
672
  case 1:                       /* Colormapped image */
388
672
    if (source->pixel_size == 1 && cmaptype == 1)
389
648
      source->get_pixel_rows = get_8bit_row;
390
24
    else
391
24
      ERREXIT(cinfo, JERR_TGA_BADPARMS);
392
672
    TRACEMS2(cinfo, 1, JTRC_TGA_MAPPED, width, height);
393
672
    break;
394
4.00k
  case 2:                       /* RGB image */
395
4.00k
    switch (source->pixel_size) {
396
2.88k
    case 2:
397
2.88k
      source->get_pixel_rows = get_16bit_row;
398
2.88k
      break;
399
650
    case 3:
400
650
      source->get_pixel_rows = get_24bit_row;
401
650
      break;
402
464
    case 4:
403
464
      source->get_pixel_rows = get_32bit_row;
404
464
      break;
405
12
    default:
406
12
      ERREXIT(cinfo, JERR_TGA_BADPARMS);
407
12
      break;
408
4.00k
    }
409
3.99k
    TRACEMS2(cinfo, 1, JTRC_TGA, width, height);
410
3.99k
    break;
411
1.13k
  case 3:                       /* Grayscale image */
412
1.13k
    components = 1;
413
1.13k
    cinfo->in_color_space = JCS_GRAYSCALE;
414
1.13k
    if (source->pixel_size == 1)
415
1.12k
      source->get_pixel_rows = get_8bit_gray_row;
416
12
    else
417
12
      ERREXIT(cinfo, JERR_TGA_BADPARMS);
418
1.13k
    TRACEMS2(cinfo, 1, JTRC_TGA_GRAY, width, height);
419
1.13k
    break;
420
42
  default:
421
42
    ERREXIT(cinfo, JERR_TGA_BADPARMS);
422
42
    break;
423
15.3k
  }
424
425
5.77k
  if (is_bottom_up) {
426
    /* Create a virtual array to buffer the upside-down image. */
427
3.68k
    source->whole_image = (*cinfo->mem->request_virt_sarray)
428
3.68k
      ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,
429
3.68k
       (JDIMENSION)width * components, (JDIMENSION)height, (JDIMENSION)1);
430
3.68k
    if (cinfo->progress != NULL) {
431
0
      cd_progress_ptr progress = (cd_progress_ptr)cinfo->progress;
432
0
      progress->total_extra_passes++; /* count file input as separate pass */
433
0
    }
434
    /* source->pub.buffer will point to the virtual array. */
435
3.68k
    source->pub.buffer_height = 1; /* in case anyone looks at it */
436
3.68k
    source->pub.get_pixel_rows = preload_image;
437
3.68k
  } else {
438
    /* Don't need a virtual array, but do need a one-row input buffer. */
439
2.08k
    source->whole_image = NULL;
440
2.08k
    source->pub.buffer = (*cinfo->mem->alloc_sarray)
441
2.08k
      ((j_common_ptr)cinfo, JPOOL_IMAGE,
442
2.08k
       (JDIMENSION)width * components, (JDIMENSION)1);
443
2.08k
    source->pub.buffer_height = 1;
444
2.08k
    source->pub.get_pixel_rows = source->get_pixel_rows;
445
2.08k
  }
446
447
21.9k
  while (idlen--)               /* Throw away ID field */
448
16.2k
    (void)read_byte(source);
449
450
5.77k
  if (maplen > 0) {
451
962
    if (maplen > 256 || GET_2B(3) != 0)
452
216
      ERREXIT(cinfo, JERR_TGA_BADCMAP);
453
    /* Allocate space to store the colormap */
454
962
    source->colormap = (*cinfo->mem->alloc_sarray)
455
962
      ((j_common_ptr)cinfo, JPOOL_IMAGE, (JDIMENSION)maplen, (JDIMENSION)3);
456
962
    source->cmap_length = (int)maplen;
457
    /* and read it from the file */
458
962
    read_colormap(source, (int)maplen, UCH(targaheader[7]));
459
4.80k
  } else {
460
4.80k
    if (cmaptype)               /* but you promised a cmap! */
461
12
      ERREXIT(cinfo, JERR_TGA_BADPARMS);
462
4.80k
    source->colormap = NULL;
463
4.80k
    source->cmap_length = 0;
464
4.80k
  }
465
466
5.77k
  cinfo->input_components = components;
467
5.77k
  cinfo->data_precision = 8;
468
5.77k
  cinfo->image_width = width;
469
5.77k
  cinfo->image_height = height;
470
5.77k
}
471
472
473
/*
474
 * Finish up at the end of the file.
475
 */
476
477
METHODDEF(void)
478
finish_input_tga(j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
479
2.83k
{
480
  /* no work */
481
2.83k
}
482
483
484
/*
485
 * The module selection routine for Targa format input.
486
 */
487
488
GLOBAL(cjpeg_source_ptr)
489
jinit_read_targa(j_compress_ptr cinfo)
490
15.3k
{
491
15.3k
  tga_source_ptr source;
492
493
  /* Create module interface object */
494
15.3k
  source = (tga_source_ptr)
495
15.3k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
496
15.3k
                                sizeof(tga_source_struct));
497
15.3k
  source->cinfo = cinfo;        /* make back link for subroutines */
498
  /* Fill in method ptrs, except get_pixel_rows which start_input sets */
499
15.3k
  source->pub.start_input = start_input_tga;
500
15.3k
  source->pub.finish_input = finish_input_tga;
501
15.3k
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
502
15.3k
  source->pub.max_pixels = 0;
503
15.3k
#endif
504
505
15.3k
  return (cjpeg_source_ptr)source;
506
15.3k
}
507
508
#endif /* TARGA_SUPPORTED */