pngset.c 46.0 KB
Newer Older
A
Andreas Dilger 已提交
1 2

/* pngset.c - storage of image information into info struct
3
 *
4
 * Last changed in libpng 1.6.17 [(PENDING RELEASE)]
5
 * Copyright (c) 1998-2015 Glenn Randers-Pehrson
6 7
 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
8
 *
9
 * This code is released under the libpng license.
10
 * For conditions of distribution and use, see the disclaimer
11
 * and license in png.h
12
 *
13 14 15 16 17
 * The functions here are used during reads to store data from the file
 * into the info struct, and during writes to store application data
 * into the info struct for writing into the file.  This abstracts the
 * info struct and allows us to change the structure in the future.
 */
A
Andreas Dilger 已提交
18

19
#include "pngpriv.h"
20

21 22
#if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)

23
#ifdef PNG_bKGD_SUPPORTED
24
void PNGAPI
25
png_set_bKGD(png_const_structrp png_ptr, png_inforp info_ptr,
26
    png_const_color_16p background)
A
Andreas Dilger 已提交
27
{
28
   png_debug1(1, "in %s storage function", "bKGD");
29

30
   if (png_ptr == NULL || info_ptr == NULL || background == NULL)
A
Andreas Dilger 已提交
31 32
      return;

33
   info_ptr->background = *background;
A
Andreas Dilger 已提交
34 35 36 37
   info_ptr->valid |= PNG_INFO_bKGD;
}
#endif

38
#ifdef PNG_cHRM_SUPPORTED
G
[devel]  
Glenn Randers-Pehrson 已提交
39
void PNGFAPI
40
png_set_cHRM_fixed(png_const_structrp png_ptr, png_inforp info_ptr,
41 42 43
    png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x,
    png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y,
    png_fixed_point blue_x, png_fixed_point blue_y)
44
{
45 46
   png_xy xy;

47
   png_debug1(1, "in %s storage function", "cHRM fixed");
48

49 50
   if (png_ptr == NULL || info_ptr == NULL)
      return;
A
Andreas Dilger 已提交
51

52 53 54 55 56 57 58 59 60 61
   xy.redx = red_x;
   xy.redy = red_y;
   xy.greenx = green_x;
   xy.greeny = green_y;
   xy.bluex = blue_x;
   xy.bluey = blue_y;
   xy.whitex = white_x;
   xy.whitey = white_y;

   if (png_colorspace_set_chromaticities(png_ptr, &info_ptr->colorspace, &xy,
62
       2/* override with app values*/) != 0)
63 64 65
      info_ptr->colorspace.flags |= PNG_COLORSPACE_FROM_cHRM;

   png_colorspace_sync_info(png_ptr, info_ptr);
66 67
}

68
void PNGFAPI
69
png_set_cHRM_XYZ_fixed(png_const_structrp png_ptr, png_inforp info_ptr,
70 71 72 73 74 75 76 77 78 79 80 81 82
    png_fixed_point int_red_X, png_fixed_point int_red_Y,
    png_fixed_point int_red_Z, png_fixed_point int_green_X,
    png_fixed_point int_green_Y, png_fixed_point int_green_Z,
    png_fixed_point int_blue_X, png_fixed_point int_blue_Y,
    png_fixed_point int_blue_Z)
{
   png_XYZ XYZ;

   png_debug1(1, "in %s storage function", "cHRM XYZ fixed");

   if (png_ptr == NULL || info_ptr == NULL)
      return;

83 84 85 86 87 88 89 90 91 92
   XYZ.red_X = int_red_X;
   XYZ.red_Y = int_red_Y;
   XYZ.red_Z = int_red_Z;
   XYZ.green_X = int_green_X;
   XYZ.green_Y = int_green_Y;
   XYZ.green_Z = int_green_Z;
   XYZ.blue_X = int_blue_X;
   XYZ.blue_Y = int_blue_Y;
   XYZ.blue_Z = int_blue_Z;

93 94
   if (png_colorspace_set_endpoints(png_ptr, &info_ptr->colorspace,
       &XYZ, 2) != 0)
95 96 97
      info_ptr->colorspace.flags |= PNG_COLORSPACE_FROM_cHRM;

   png_colorspace_sync_info(png_ptr, info_ptr);
98 99
}

100
#  ifdef PNG_FLOATING_POINT_SUPPORTED
101
void PNGAPI
102
png_set_cHRM(png_const_structrp png_ptr, png_inforp info_ptr,
G
[devel]  
Glenn Randers-Pehrson 已提交
103 104
    double white_x, double white_y, double red_x, double red_y,
    double green_x, double green_y, double blue_x, double blue_y)
A
Andreas Dilger 已提交
105
{
G
[devel]  
Glenn Randers-Pehrson 已提交
106 107 108 109 110 111 112 113 114 115
   png_set_cHRM_fixed(png_ptr, info_ptr,
      png_fixed(png_ptr, white_x, "cHRM White X"),
      png_fixed(png_ptr, white_y, "cHRM White Y"),
      png_fixed(png_ptr, red_x, "cHRM Red X"),
      png_fixed(png_ptr, red_y, "cHRM Red Y"),
      png_fixed(png_ptr, green_x, "cHRM Green X"),
      png_fixed(png_ptr, green_y, "cHRM Green Y"),
      png_fixed(png_ptr, blue_x, "cHRM Blue X"),
      png_fixed(png_ptr, blue_y, "cHRM Blue Y"));
}
116 117

void PNGAPI
118
png_set_cHRM_XYZ(png_const_structrp png_ptr, png_inforp info_ptr, double red_X,
119 120 121 122 123 124 125 126 127 128 129 130 131 132
    double red_Y, double red_Z, double green_X, double green_Y, double green_Z,
    double blue_X, double blue_Y, double blue_Z)
{
   png_set_cHRM_XYZ_fixed(png_ptr, info_ptr,
      png_fixed(png_ptr, red_X, "cHRM Red X"),
      png_fixed(png_ptr, red_Y, "cHRM Red Y"),
      png_fixed(png_ptr, red_Z, "cHRM Red Z"),
      png_fixed(png_ptr, green_X, "cHRM Red X"),
      png_fixed(png_ptr, green_Y, "cHRM Red Y"),
      png_fixed(png_ptr, green_Z, "cHRM Red Z"),
      png_fixed(png_ptr, blue_X, "cHRM Red X"),
      png_fixed(png_ptr, blue_Y, "cHRM Red Y"),
      png_fixed(png_ptr, blue_Z, "cHRM Red Z"));
}
133
#  endif /* FLOATING_POINT */
134

135
#endif /* cHRM */
136

G
[devel]  
Glenn Randers-Pehrson 已提交
137 138
#ifdef PNG_gAMA_SUPPORTED
void PNGFAPI
139 140
png_set_gAMA_fixed(png_const_structrp png_ptr, png_inforp info_ptr,
    png_fixed_point file_gamma)
141
{
142
   png_debug1(1, "in %s storage function", "gAMA");
143

144 145 146
   if (png_ptr == NULL || info_ptr == NULL)
      return;

147 148
   png_colorspace_set_gamma(png_ptr, &info_ptr->colorspace, file_gamma);
   png_colorspace_sync_info(png_ptr, info_ptr);
G
[devel]  
Glenn Randers-Pehrson 已提交
149
}
150

151
#  ifdef PNG_FLOATING_POINT_SUPPORTED
G
[devel]  
Glenn Randers-Pehrson 已提交
152
void PNGAPI
153
png_set_gAMA(png_const_structrp png_ptr, png_inforp info_ptr, double file_gamma)
G
[devel]  
Glenn Randers-Pehrson 已提交
154 155
{
   png_set_gAMA_fixed(png_ptr, info_ptr, png_fixed(png_ptr, file_gamma,
156
       "png_set_gAMA"));
A
Andreas Dilger 已提交
157
}
158
#  endif
159
#endif
A
Andreas Dilger 已提交
160

161
#ifdef PNG_hIST_SUPPORTED
162
void PNGAPI
163 164
png_set_hIST(png_const_structrp png_ptr, png_inforp info_ptr,
    png_const_uint_16p hist)
A
Andreas Dilger 已提交
165
{
166
   int i;
167

168
   png_debug1(1, "in %s storage function", "hIST");
169

170
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
171
      return;
172

173
   if (info_ptr->num_palette == 0 || info_ptr->num_palette
174
       > PNG_MAX_PALETTE_LENGTH)
175
   {
176
      png_warning(png_ptr,
177
          "Invalid palette size, hIST allocation skipped");
178

179
      return;
180
   }
181 182

   png_free_data(png_ptr, info_ptr, PNG_FREE_HIST, 0);
183

184 185 186
   /* Changed from info->num_palette to PNG_MAX_PALETTE_LENGTH in
    * version 1.2.1
    */
187
   info_ptr->hist = png_voidcast(png_uint_16p, png_malloc_warn(png_ptr,
188
       PNG_MAX_PALETTE_LENGTH * (sizeof (png_uint_16))));
189

190
   if (info_ptr->hist == NULL)
191 192
   {
      png_warning(png_ptr, "Insufficient memory for hIST chunk data");
193

194 195
      return;
   }
A
Andreas Dilger 已提交
196

197 198
   info_ptr->free_me |= PNG_FREE_HIST;

199
   for (i = 0; i < info_ptr->num_palette; i++)
200
      info_ptr->hist[i] = hist[i];
201

A
Andreas Dilger 已提交
202 203 204 205
   info_ptr->valid |= PNG_INFO_hIST;
}
#endif

206
void PNGAPI
207
png_set_IHDR(png_const_structrp png_ptr, png_inforp info_ptr,
208 209 210
    png_uint_32 width, png_uint_32 height, int bit_depth,
    int color_type, int interlace_type, int compression_type,
    int filter_type)
A
Andreas Dilger 已提交
211
{
212
   png_debug1(1, "in %s storage function", "IHDR");
213

214
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
215 216 217 218 219
      return;

   info_ptr->width = width;
   info_ptr->height = height;
   info_ptr->bit_depth = (png_byte)bit_depth;
220
   info_ptr->color_type = (png_byte)color_type;
A
Andreas Dilger 已提交
221 222 223
   info_ptr->compression_type = (png_byte)compression_type;
   info_ptr->filter_type = (png_byte)filter_type;
   info_ptr->interlace_type = (png_byte)interlace_type;
224 225 226 227 228

   png_check_IHDR (png_ptr, info_ptr->width, info_ptr->height,
       info_ptr->bit_depth, info_ptr->color_type, info_ptr->interlace_type,
       info_ptr->compression_type, info_ptr->filter_type);

229 230
   if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
      info_ptr->channels = 1;
231

232
   else if ((info_ptr->color_type & PNG_COLOR_MASK_COLOR) != 0)
A
Andreas Dilger 已提交
233
      info_ptr->channels = 3;
234

A
Andreas Dilger 已提交
235 236
   else
      info_ptr->channels = 1;
237

238
   if ((info_ptr->color_type & PNG_COLOR_MASK_ALPHA) != 0)
A
Andreas Dilger 已提交
239
      info_ptr->channels++;
240

A
Andreas Dilger 已提交
241
   info_ptr->pixel_depth = (png_byte)(info_ptr->channels * info_ptr->bit_depth);
242

243
   info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth, width);
A
Andreas Dilger 已提交
244 245
}

246
#ifdef PNG_oFFs_SUPPORTED
247
void PNGAPI
248
png_set_oFFs(png_const_structrp png_ptr, png_inforp info_ptr,
249
    png_int_32 offset_x, png_int_32 offset_y, int unit_type)
A
Andreas Dilger 已提交
250
{
251
   png_debug1(1, "in %s storage function", "oFFs");
252

253
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
254 255 256 257 258 259 260 261 262
      return;

   info_ptr->x_offset = offset_x;
   info_ptr->y_offset = offset_y;
   info_ptr->offset_unit_type = (png_byte)unit_type;
   info_ptr->valid |= PNG_INFO_oFFs;
}
#endif

263
#ifdef PNG_pCAL_SUPPORTED
264
void PNGAPI
265
png_set_pCAL(png_const_structrp png_ptr, png_inforp info_ptr,
266 267
    png_const_charp purpose, png_int_32 X0, png_int_32 X1, int type,
    int nparams, png_const_charp units, png_charpp params)
A
Andreas Dilger 已提交
268
{
269
   png_size_t length;
270
   int i;
A
Andreas Dilger 已提交
271

272
   png_debug1(1, "in %s storage function", "pCAL");
273

274
   if (png_ptr == NULL || info_ptr == NULL || purpose == NULL || units == NULL
275
       || (nparams > 0 && params == NULL))
A
Andreas Dilger 已提交
276 277
      return;

278
   length = strlen(purpose) + 1;
279
   png_debug1(3, "allocating purpose for info (%lu bytes)",
280
       (unsigned long)length);
281

G
[devel]  
Glenn Randers-Pehrson 已提交
282 283 284 285 286 287
   /* TODO: validate format of calibration name and unit name */

   /* Check that the type matches the specification. */
   if (type < 0 || type > 3)
      png_error(png_ptr, "Invalid pCAL equation type");

288 289 290
   if (nparams < 0 || nparams > 255)
      png_error(png_ptr, "Invalid pCAL parameter count");

G
[devel]  
Glenn Randers-Pehrson 已提交
291 292
   /* Validate params[nparams] */
   for (i=0; i<nparams; ++i)
293
   {
294
      if (params[i] == NULL ||
295
          !png_check_fp_string(params[i], strlen(params[i])))
G
[devel]  
Glenn Randers-Pehrson 已提交
296
         png_error(png_ptr, "Invalid format for pCAL parameter");
297
   }
G
[devel]  
Glenn Randers-Pehrson 已提交
298

299
   info_ptr->pcal_purpose = png_voidcast(png_charp,
300
       png_malloc_warn(png_ptr, length));
301

302
   if (info_ptr->pcal_purpose == NULL)
303
   {
304
      png_warning(png_ptr, "Insufficient memory for pCAL purpose");
305

306 307
      return;
   }
308

309
   memcpy(info_ptr->pcal_purpose, purpose, length);
A
Andreas Dilger 已提交
310

311
   png_debug(3, "storing X0, X1, type, and nparams in info");
A
Andreas Dilger 已提交
312 313 314 315 316
   info_ptr->pcal_X0 = X0;
   info_ptr->pcal_X1 = X1;
   info_ptr->pcal_type = (png_byte)type;
   info_ptr->pcal_nparams = (png_byte)nparams;

317
   length = strlen(units) + 1;
318
   png_debug1(3, "allocating units for info (%lu bytes)",
319
     (unsigned long)length);
320

321 322
   info_ptr->pcal_units = png_voidcast(png_charp,
      png_malloc_warn(png_ptr, length));
323

324
   if (info_ptr->pcal_units == NULL)
325
   {
326
      png_warning(png_ptr, "Insufficient memory for pCAL units");
327

328 329
      return;
   }
330

331
   memcpy(info_ptr->pcal_units, units, length);
A
Andreas Dilger 已提交
332

333
   info_ptr->pcal_params = png_voidcast(png_charpp, png_malloc_warn(png_ptr,
334
       (png_size_t)((nparams + 1) * (sizeof (png_charp)))));
335

336
   if (info_ptr->pcal_params == NULL)
337
   {
338
      png_warning(png_ptr, "Insufficient memory for pCAL params");
339

340 341
      return;
   }
342

343
   memset(info_ptr->pcal_params, 0, (nparams + 1) * (sizeof (png_charp)));
A
Andreas Dilger 已提交
344 345 346

   for (i = 0; i < nparams; i++)
   {
347
      length = strlen(params[i]) + 1;
348
      png_debug2(3, "allocating parameter %d for info (%lu bytes)", i,
349
          (unsigned long)length);
350

351
      info_ptr->pcal_params[i] = (png_charp)png_malloc_warn(png_ptr, length);
352

353
      if (info_ptr->pcal_params[i] == NULL)
354
      {
355
         png_warning(png_ptr, "Insufficient memory for pCAL parameter");
356

357
         return;
358
      }
359

360
      memcpy(info_ptr->pcal_params[i], params[i], length);
A
Andreas Dilger 已提交
361 362 363
   }

   info_ptr->valid |= PNG_INFO_pCAL;
364
   info_ptr->free_me |= PNG_FREE_PCAL;
A
Andreas Dilger 已提交
365 366 367
}
#endif

368
#ifdef PNG_sCAL_SUPPORTED
369
void PNGAPI
370
png_set_sCAL_s(png_const_structrp png_ptr, png_inforp info_ptr,
371
    int unit, png_const_charp swidth, png_const_charp sheight)
372
{
373
   png_size_t lengthw = 0, lengthh = 0;
374

375
   png_debug1(1, "in %s storage function", "sCAL");
376

377 378 379
   if (png_ptr == NULL || info_ptr == NULL)
      return;

G
[devel]  
Glenn Randers-Pehrson 已提交
380 381 382 383 384 385
   /* Double check the unit (should never get here with an invalid
    * unit unless this is an API call.)
    */
   if (unit != 1 && unit != 2)
      png_error(png_ptr, "Invalid sCAL unit");

386
   if (swidth == NULL || (lengthw = strlen(swidth)) == 0 ||
387
       swidth[0] == 45 /* '-' */ || !png_check_fp_string(swidth, lengthw))
G
[devel]  
Glenn Randers-Pehrson 已提交
388 389
      png_error(png_ptr, "Invalid sCAL width");

390
   if (sheight == NULL || (lengthh = strlen(sheight)) == 0 ||
391
       sheight[0] == 45 /* '-' */ || !png_check_fp_string(sheight, lengthh))
G
[devel]  
Glenn Randers-Pehrson 已提交
392 393
      png_error(png_ptr, "Invalid sCAL height");

394
   info_ptr->scal_unit = (png_byte)unit;
395

G
[devel]  
Glenn Randers-Pehrson 已提交
396
   ++lengthw;
397

398
   png_debug1(3, "allocating unit for info (%u bytes)", (unsigned int)lengthw);
399

400 401
   info_ptr->scal_s_width = png_voidcast(png_charp,
      png_malloc_warn(png_ptr, lengthw));
402

403 404
   if (info_ptr->scal_s_width == NULL)
   {
G
[devel]  
Glenn Randers-Pehrson 已提交
405
      png_warning(png_ptr, "Memory allocation failed while processing sCAL");
406

407
      return;
408
   }
409

410
   memcpy(info_ptr->scal_s_width, swidth, lengthw);
411

G
[devel]  
Glenn Randers-Pehrson 已提交
412
   ++lengthh;
413

414
   png_debug1(3, "allocating unit for info (%u bytes)", (unsigned int)lengthh);
415

416 417
   info_ptr->scal_s_height = png_voidcast(png_charp,
      png_malloc_warn(png_ptr, lengthh));
418

419 420 421
   if (info_ptr->scal_s_height == NULL)
   {
      png_free (png_ptr, info_ptr->scal_s_width);
422
      info_ptr->scal_s_width = NULL;
423

G
[devel]  
Glenn Randers-Pehrson 已提交
424
      png_warning(png_ptr, "Memory allocation failed while processing sCAL");
425

426
      return;
427
   }
428

429
   memcpy(info_ptr->scal_s_height, sheight, lengthh);
G
[devel]  
Glenn Randers-Pehrson 已提交
430

431
   info_ptr->valid |= PNG_INFO_sCAL;
432
   info_ptr->free_me |= PNG_FREE_SCAL;
433
}
G
[devel]  
Glenn Randers-Pehrson 已提交
434

435
#  ifdef PNG_FLOATING_POINT_SUPPORTED
G
[devel]  
Glenn Randers-Pehrson 已提交
436
void PNGAPI
437 438
png_set_sCAL(png_const_structrp png_ptr, png_inforp info_ptr, int unit,
    double width, double height)
G
[devel]  
Glenn Randers-Pehrson 已提交
439 440 441 442 443 444
{
   png_debug1(1, "in %s storage function", "sCAL");

   /* Check the arguments. */
   if (width <= 0)
      png_warning(png_ptr, "Invalid sCAL width ignored");
445

G
[devel]  
Glenn Randers-Pehrson 已提交
446 447
   else if (height <= 0)
      png_warning(png_ptr, "Invalid sCAL height ignored");
448

G
[devel]  
Glenn Randers-Pehrson 已提交
449 450 451 452 453 454
   else
   {
      /* Convert 'width' and 'height' to ASCII. */
      char swidth[PNG_sCAL_MAX_DIGITS+1];
      char sheight[PNG_sCAL_MAX_DIGITS+1];

455
      png_ascii_from_fp(png_ptr, swidth, (sizeof swidth), width,
G
[devel]  
Glenn Randers-Pehrson 已提交
456
         PNG_sCAL_PRECISION);
457
      png_ascii_from_fp(png_ptr, sheight, (sizeof sheight), height,
G
[devel]  
Glenn Randers-Pehrson 已提交
458 459 460 461 462
         PNG_sCAL_PRECISION);

      png_set_sCAL_s(png_ptr, info_ptr, unit, swidth, sheight);
   }
}
463
#  endif
464

465
#  ifdef PNG_FIXED_POINT_SUPPORTED
466
void PNGAPI
467
png_set_sCAL_fixed(png_const_structrp png_ptr, png_inforp info_ptr, int unit,
468
    png_fixed_point width, png_fixed_point height)
469 470 471 472 473 474
{
   png_debug1(1, "in %s storage function", "sCAL");

   /* Check the arguments. */
   if (width <= 0)
      png_warning(png_ptr, "Invalid sCAL width ignored");
475

476 477
   else if (height <= 0)
      png_warning(png_ptr, "Invalid sCAL height ignored");
478

479 480 481 482 483 484
   else
   {
      /* Convert 'width' and 'height' to ASCII. */
      char swidth[PNG_sCAL_MAX_DIGITS+1];
      char sheight[PNG_sCAL_MAX_DIGITS+1];

485 486
      png_ascii_from_fixed(png_ptr, swidth, (sizeof swidth), width);
      png_ascii_from_fixed(png_ptr, sheight, (sizeof sheight), height);
487 488 489 490

      png_set_sCAL_s(png_ptr, info_ptr, unit, swidth, sheight);
   }
}
491
#  endif
492
#endif
493

494
#ifdef PNG_pHYs_SUPPORTED
495
void PNGAPI
496
png_set_pHYs(png_const_structrp png_ptr, png_inforp info_ptr,
497
    png_uint_32 res_x, png_uint_32 res_y, int unit_type)
A
Andreas Dilger 已提交
498
{
499
   png_debug1(1, "in %s storage function", "pHYs");
500

501
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
502 503 504 505 506 507 508 509 510
      return;

   info_ptr->x_pixels_per_unit = res_x;
   info_ptr->y_pixels_per_unit = res_y;
   info_ptr->phys_unit_type = (png_byte)unit_type;
   info_ptr->valid |= PNG_INFO_pHYs;
}
#endif

511
void PNGAPI
512
png_set_PLTE(png_structrp png_ptr, png_inforp info_ptr,
513
    png_const_colorp palette, int num_palette)
A
Andreas Dilger 已提交
514
{
515

516
   png_debug1(1, "in %s storage function", "PLTE");
517

518
   if (png_ptr == NULL || info_ptr == NULL)
A
Andreas Dilger 已提交
519 520
      return;

521
   if (num_palette < 0 || num_palette > PNG_MAX_PALETTE_LENGTH)
522 523
   {
      if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
524
         png_error(png_ptr, "Invalid palette length");
525

526 527
      else
      {
528
         png_warning(png_ptr, "Invalid palette length");
529

530
         return;
531 532
      }
   }
533

534 535 536 537 538 539 540
   if ((num_palette > 0 && palette == NULL) ||
      (num_palette == 0
#        ifdef PNG_MNG_FEATURES_SUPPORTED
            && (png_ptr->mng_features_permitted & PNG_FLAG_MNG_EMPTY_PLTE) == 0
#        endif
      ))
   {
541
      png_error(png_ptr, "Invalid palette");
542 543
   }

544
   /* It may not actually be necessary to set png_ptr->palette here;
545 546
    * we do it for backward compatibility with the way the png_handle_tRNS
    * function used to do the allocation.
547 548 549
    *
    * 1.6.0: the above statement appears to be incorrect; something has to set
    * the palette inside png_struct on read.
550 551
    */
   png_free_data(png_ptr, info_ptr, PNG_FREE_PLTE, 0);
552

553
   /* Changed in libpng-1.2.1 to allocate PNG_MAX_PALETTE_LENGTH instead
554 555 556
    * of num_palette entries, in case of an invalid PNG file that has
    * too-large sample values.
    */
557
   png_ptr->palette = png_voidcast(png_colorp, png_calloc(png_ptr,
558
       PNG_MAX_PALETTE_LENGTH * (sizeof (png_color))));
559

560 561
   if (num_palette > 0)
      memcpy(png_ptr->palette, palette, num_palette * (sizeof (png_color)));
562 563 564 565
   info_ptr->palette = png_ptr->palette;
   info_ptr->num_palette = png_ptr->num_palette = (png_uint_16)num_palette;

   info_ptr->free_me |= PNG_FREE_PLTE;
566

567
   info_ptr->valid |= PNG_INFO_PLTE;
A
Andreas Dilger 已提交
568 569
}

570
#ifdef PNG_sBIT_SUPPORTED
571
void PNGAPI
572
png_set_sBIT(png_const_structrp png_ptr, png_inforp info_ptr,
573
    png_const_color_8p sig_bit)
A
Andreas Dilger 已提交
574
{
575
   png_debug1(1, "in %s storage function", "sBIT");
576

577
   if (png_ptr == NULL || info_ptr == NULL || sig_bit == NULL)
A
Andreas Dilger 已提交
578 579
      return;

580
   info_ptr->sig_bit = *sig_bit;
A
Andreas Dilger 已提交
581 582 583 584
   info_ptr->valid |= PNG_INFO_sBIT;
}
#endif

585
#ifdef PNG_sRGB_SUPPORTED
586
void PNGAPI
587
png_set_sRGB(png_const_structrp png_ptr, png_inforp info_ptr, int srgb_intent)
588
{
589
   png_debug1(1, "in %s storage function", "sRGB");
590

591
   if (png_ptr == NULL || info_ptr == NULL)
592 593
      return;

594 595
   (void)png_colorspace_set_sRGB(png_ptr, &info_ptr->colorspace, srgb_intent);
   png_colorspace_sync_info(png_ptr, info_ptr);
596
}
597

598
void PNGAPI
599
png_set_sRGB_gAMA_and_cHRM(png_const_structrp png_ptr, png_inforp info_ptr,
600
    int srgb_intent)
601
{
602
   png_debug1(1, "in %s storage function", "sRGB_gAMA_and_cHRM");
603

604
   if (png_ptr == NULL || info_ptr == NULL)
605 606
      return;

607 608
   if (png_colorspace_set_sRGB(png_ptr, &info_ptr->colorspace,
       srgb_intent) != 0)
609 610 611 612 613
   {
      /* This causes the gAMA and cHRM to be written too */
      info_ptr->colorspace.flags |=
         PNG_COLORSPACE_FROM_gAMA|PNG_COLORSPACE_FROM_cHRM;
   }
614

615
   png_colorspace_sync_info(png_ptr, info_ptr);
616
}
617
#endif /* sRGB */
618

619

620
#ifdef PNG_iCCP_SUPPORTED
621
void PNGAPI
622
png_set_iCCP(png_const_structrp png_ptr, png_inforp info_ptr,
623 624
    png_const_charp name, int compression_type,
    png_const_bytep profile, png_uint_32 proflen)
625
{
626
   png_charp new_iccp_name;
G
[devel]  
Glenn Randers-Pehrson 已提交
627
   png_bytep new_iccp_profile;
628
   png_size_t length;
629

630
   png_debug1(1, "in %s storage function", "iCCP");
631

632 633 634
   if (png_ptr == NULL || info_ptr == NULL || name == NULL || profile == NULL)
      return;

635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
   if (compression_type != PNG_COMPRESSION_TYPE_BASE)
      png_app_error(png_ptr, "Invalid iCCP compression method");

   /* Set the colorspace first because this validates the profile; do not
    * override previously set app cHRM or gAMA here (because likely as not the
    * application knows better than libpng what the correct values are.)  Pass
    * the info_ptr color_type field to png_colorspace_set_ICC because in the
    * write case it has not yet been stored in png_ptr.
    */
   {
      int result = png_colorspace_set_ICC(png_ptr, &info_ptr->colorspace, name,
         proflen, profile, info_ptr->color_type);

      png_colorspace_sync_info(png_ptr, info_ptr);

      /* Don't do any of the copying if the profile was bad, or inconsistent. */
651
      if (result == 0)
652 653 654 655 656 657 658 659
         return;

      /* But do write the gAMA and cHRM chunks from the profile. */
      info_ptr->colorspace.flags |=
         PNG_COLORSPACE_FROM_gAMA|PNG_COLORSPACE_FROM_cHRM;
   }

   length = strlen(name)+1;
660
   new_iccp_name = png_voidcast(png_charp, png_malloc_warn(png_ptr, length));
661

662 663
   if (new_iccp_name == NULL)
   {
664
      png_benign_error(png_ptr, "Insufficient memory to process iCCP chunk");
665

666 667
      return;
   }
668

669
   memcpy(new_iccp_name, name, length);
670 671
   new_iccp_profile = png_voidcast(png_bytep,
      png_malloc_warn(png_ptr, proflen));
672

673 674
   if (new_iccp_profile == NULL)
   {
675
      png_free(png_ptr, new_iccp_name);
676
      new_iccp_name = NULL;
677
      png_benign_error(png_ptr,
678
          "Insufficient memory to process iCCP profile");
679

680 681
      return;
   }
682

683
   memcpy(new_iccp_profile, profile, proflen);
684

685
   png_free_data(png_ptr, info_ptr, PNG_FREE_ICCP, 0);
686

687
   info_ptr->iccp_proflen = proflen;
688 689
   info_ptr->iccp_name = new_iccp_name;
   info_ptr->iccp_profile = new_iccp_profile;
690
   info_ptr->free_me |= PNG_FREE_ICCP;
691 692 693 694
   info_ptr->valid |= PNG_INFO_iCCP;
}
#endif

695
#ifdef PNG_TEXT_SUPPORTED
696
void PNGAPI
697 698
png_set_text(png_const_structrp png_ptr, png_inforp info_ptr,
    png_const_textp text_ptr, int num_text)
699 700
{
   int ret;
701
   ret = png_set_text_2(png_ptr, info_ptr, text_ptr, num_text);
702

703
   if (ret != 0)
704
      png_error(png_ptr, "Insufficient memory to store text");
705 706 707
}

int /* PRIVATE */
708
png_set_text_2(png_const_structrp png_ptr, png_inforp info_ptr,
709
    png_const_textp text_ptr, int num_text)
A
Andreas Dilger 已提交
710 711 712
{
   int i;

713 714
   png_debug1(1, "in %lx storage function", png_ptr == NULL ? "unexpected" :
      (unsigned long)png_ptr->chunk_name);
A
Andreas Dilger 已提交
715

716
   if (png_ptr == NULL || info_ptr == NULL || num_text <= 0 || text_ptr == NULL)
717
      return(0);
A
Andreas Dilger 已提交
718 719

   /* Make sure we have enough space in the "text" array in info_struct
720 721 722
    * to hold all of the incoming text_ptr objects.  This compare can't overflow
    * because max_text >= num_text (anyway, subtract of two positive integers
    * can't overflow in any case.)
A
Andreas Dilger 已提交
723
    */
724
   if (num_text > info_ptr->max_text - info_ptr->num_text)
A
Andreas Dilger 已提交
725
   {
726 727 728 729 730 731 732
      int old_num_text = info_ptr->num_text;
      int max_text;
      png_textp new_text = NULL;

      /* Calculate an appropriate max_text, checking for overflow. */
      max_text = old_num_text;
      if (num_text <= INT_MAX - max_text)
A
Andreas Dilger 已提交
733
      {
734
         max_text += num_text;
735

736 737 738
         /* Round up to a multiple of 8 */
         if (max_text < INT_MAX-8)
            max_text = (max_text + 8) & ~0x7;
739

740 741 742
         else
            max_text = INT_MAX;

743
         /* Now allocate a new array and copy the old members in; this does all
744 745 746 747 748
          * the overflow checks.
          */
         new_text = png_voidcast(png_textp,png_realloc_array(png_ptr,
            info_ptr->text, old_num_text, max_text-old_num_text,
            sizeof *new_text));
A
Andreas Dilger 已提交
749
      }
750

751
      if (new_text == NULL)
A
Andreas Dilger 已提交
752
      {
753 754
         png_chunk_report(png_ptr, "too many text chunks",
            PNG_CHUNK_WRITE_ERROR);
755

756
         return 1;
A
Andreas Dilger 已提交
757
      }
758

759 760 761 762 763 764 765 766
      png_free(png_ptr, info_ptr->text);

      info_ptr->text = new_text;
      info_ptr->free_me |= PNG_FREE_TEXT;
      info_ptr->max_text = max_text;
      /* num_text is adjusted below as the entries are copied in */

      png_debug1(3, "allocated %d entries for info_ptr->text", max_text);
A
Andreas Dilger 已提交
767
   }
768

A
Andreas Dilger 已提交
769 770
   for (i = 0; i < num_text; i++)
   {
771 772
      size_t text_length, key_len;
      size_t lang_len, lang_key_len;
A
Andreas Dilger 已提交
773 774
      png_textp textp = &(info_ptr->text[info_ptr->num_text]);

775
      if (text_ptr[i].key == NULL)
776 777
          continue;

778 779
      if (text_ptr[i].compression < PNG_TEXT_COMPRESSION_NONE ||
          text_ptr[i].compression >= PNG_TEXT_COMPRESSION_LAST)
780
      {
781 782
         png_chunk_report(png_ptr, "text compression mode is out of range",
            PNG_CHUNK_WRITE_ERROR);
783 784 785
         continue;
      }

786
      key_len = strlen(text_ptr[i].key);
787

788
      if (text_ptr[i].compression <= 0)
789
      {
790 791
         lang_len = 0;
         lang_key_len = 0;
792
      }
793

794
      else
795
#  ifdef PNG_iTXt_SUPPORTED
796
      {
797
         /* Set iTXt data */
798

799
         if (text_ptr[i].lang != NULL)
800
            lang_len = strlen(text_ptr[i].lang);
801

802 803
         else
            lang_len = 0;
804

805
         if (text_ptr[i].lang_key != NULL)
806
            lang_key_len = strlen(text_ptr[i].lang_key);
807

808 809
         else
            lang_key_len = 0;
810
      }
811
#  else /* iTXt */
812
      {
813 814
         png_chunk_report(png_ptr, "iTXt chunk not supported",
            PNG_CHUNK_WRITE_ERROR);
815
         continue;
816
      }
817
#  endif
A
Andreas Dilger 已提交
818

819
      if (text_ptr[i].text == NULL || text_ptr[i].text[0] == '\0')
A
Andreas Dilger 已提交
820
      {
821
         text_length = 0;
822
#  ifdef PNG_iTXt_SUPPORTED
823
         if (text_ptr[i].compression > 0)
824
            textp->compression = PNG_ITXT_COMPRESSION_NONE;
825

826
         else
827
#  endif
828
            textp->compression = PNG_TEXT_COMPRESSION_NONE;
A
Andreas Dilger 已提交
829
      }
830

A
Andreas Dilger 已提交
831 832
      else
      {
833
         text_length = strlen(text_ptr[i].text);
A
Andreas Dilger 已提交
834 835
         textp->compression = text_ptr[i].compression;
      }
836

837 838
      textp->key = png_voidcast(png_charp,png_malloc_base(png_ptr,
          key_len + text_length + lang_len + lang_key_len + 4));
839

840
      if (textp->key == NULL)
841 842 843
      {
         png_chunk_report(png_ptr, "text chunk: out of memory",
               PNG_CHUNK_WRITE_ERROR);
844

845 846
         return 1;
      }
847

848
      png_debug2(2, "Allocated %lu bytes at %p in png_set_text",
849 850
          (unsigned long)(png_uint_32)
          (key_len + lang_len + lang_key_len + text_length + 4),
851
          textp->key);
852

853
      memcpy(textp->key, text_ptr[i].key, key_len);
854
      *(textp->key + key_len) = '\0';
855

856 857
      if (text_ptr[i].compression > 0)
      {
858
         textp->lang = textp->key + key_len + 1;
859
         memcpy(textp->lang, text_ptr[i].lang, lang_len);
860
         *(textp->lang + lang_len) = '\0';
861
         textp->lang_key = textp->lang + lang_len + 1;
862
         memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len);
863
         *(textp->lang_key + lang_key_len) = '\0';
864
         textp->text = textp->lang_key + lang_key_len + 1;
865
      }
866

867 868
      else
      {
869 870
         textp->lang=NULL;
         textp->lang_key=NULL;
871
         textp->text = textp->key + key_len + 1;
872
      }
873

874
      if (text_length != 0)
875
         memcpy(textp->text, text_ptr[i].text, text_length);
876

877
      *(textp->text + text_length) = '\0';
878

879
#  ifdef PNG_iTXt_SUPPORTED
880
      if (textp->compression > 0)
881 882 883 884
      {
         textp->text_length = 0;
         textp->itxt_length = text_length;
      }
885

886
      else
887
#  endif
888 889 890 891
      {
         textp->text_length = text_length;
         textp->itxt_length = 0;
      }
892

A
Andreas Dilger 已提交
893
      info_ptr->num_text++;
894
      png_debug1(3, "transferred text chunk %d", info_ptr->num_text);
A
Andreas Dilger 已提交
895
   }
896

897
   return(0);
A
Andreas Dilger 已提交
898 899 900
}
#endif

901
#ifdef PNG_tIME_SUPPORTED
902
void PNGAPI
903 904
png_set_tIME(png_const_structrp png_ptr, png_inforp info_ptr,
    png_const_timep mod_time)
A
Andreas Dilger 已提交
905
{
906
   png_debug1(1, "in %s storage function", "tIME");
907

908
   if (png_ptr == NULL || info_ptr == NULL || mod_time == NULL ||
909
       (png_ptr->mode & PNG_WROTE_tIME) != 0)
A
Andreas Dilger 已提交
910 911
      return;

912 913 914 915 916 917
   if (mod_time->month == 0   || mod_time->month > 12  ||
       mod_time->day   == 0   || mod_time->day   > 31  ||
       mod_time->hour  > 23   || mod_time->minute > 59 ||
       mod_time->second > 60)
   {
      png_warning(png_ptr, "Ignoring invalid time value");
918

919 920 921
      return;
   }

922
   info_ptr->mod_time = *mod_time;
A
Andreas Dilger 已提交
923 924 925 926
   info_ptr->valid |= PNG_INFO_tIME;
}
#endif

927
#ifdef PNG_tRNS_SUPPORTED
928
void PNGAPI
929
png_set_tRNS(png_structrp png_ptr, png_inforp info_ptr,
930
    png_const_bytep trans_alpha, int num_trans, png_const_color_16p trans_color)
A
Andreas Dilger 已提交
931
{
932
   png_debug1(1, "in %s storage function", "tRNS");
933

934
   if (png_ptr == NULL || info_ptr == NULL)
935

A
Andreas Dilger 已提交
936 937
      return;

938
   if (trans_alpha != NULL)
939
   {
940
       /* It may not actually be necessary to set png_ptr->trans_alpha here;
941 942
        * we do it for backward compatibility with the way the png_handle_tRNS
        * function used to do the allocation.
943 944 945 946
        *
        * 1.6.0: The above statement is incorrect; png_handle_tRNS effectively
        * relies on png_set_tRNS storing the information in png_struct
        * (otherwise it won't be there for the code in pngrtran.c).
947
        */
948

949
       png_free_data(png_ptr, info_ptr, PNG_FREE_TRNS, 0);
950

951
       /* Changed from num_trans to PNG_MAX_PALETTE_LENGTH in version 1.2.1 */
952 953
       png_ptr->trans_alpha = info_ptr->trans_alpha = png_voidcast(png_bytep,
         png_malloc(png_ptr, PNG_MAX_PALETTE_LENGTH));
954

955
       if (num_trans > 0 && num_trans <= PNG_MAX_PALETTE_LENGTH)
956
          memcpy(info_ptr->trans_alpha, trans_alpha, (png_size_t)num_trans);
957
   }
A
Andreas Dilger 已提交
958

959
   if (trans_color != NULL)
A
Andreas Dilger 已提交
960
   {
961
#ifdef PNG_WARNINGS_SUPPORTED
962 963
      if (info_ptr->bit_depth < 16)
      {
964
         int sample_max = (1 << info_ptr->bit_depth) - 1;
965 966 967 968 969 970 971

         if ((info_ptr->color_type == PNG_COLOR_TYPE_GRAY &&
             trans_color->gray > sample_max) ||
             (info_ptr->color_type == PNG_COLOR_TYPE_RGB &&
             (trans_color->red > sample_max ||
             trans_color->green > sample_max ||
             trans_color->blue > sample_max)))
972 973
            png_warning(png_ptr,
               "tRNS chunk has out-of-range samples for bit_depth");
974
      }
975 976 977
#endif

      info_ptr->trans_color = *trans_color;
978

979
      if (num_trans == 0)
980
         num_trans = 1;
A
Andreas Dilger 已提交
981
   }
982

A
Andreas Dilger 已提交
983
   info_ptr->num_trans = (png_uint_16)num_trans;
984

985 986 987 988 989
   if (num_trans != 0)
   {
      info_ptr->valid |= PNG_INFO_tRNS;
      info_ptr->free_me |= PNG_FREE_TRNS;
   }
A
Andreas Dilger 已提交
990 991 992
}
#endif

993
#ifdef PNG_sPLT_SUPPORTED
994
void PNGAPI
995
png_set_sPLT(png_const_structrp png_ptr,
996
    png_inforp info_ptr, png_const_sPLT_tp entries, int nentries)
997 998 999 1000
/*
 *  entries        - array of png_sPLT_t structures
 *                   to be added to the list of palettes
 *                   in the info structure.
1001
 *
1002 1003 1004
 *  nentries       - number of palette structures to be
 *                   added.
 */
1005
{
1006
   png_sPLT_tp np;
1007

1008
   if (png_ptr == NULL || info_ptr == NULL || nentries <= 0 || entries == NULL)
1009
      return;
1010

1011 1012 1013 1014 1015 1016
   /* Use the internal realloc function, which checks for all the possible
    * overflows.  Notice that the parameters are (int) and (size_t)
    */
   np = png_voidcast(png_sPLT_tp,png_realloc_array(png_ptr,
      info_ptr->splt_palettes, info_ptr->splt_palettes_num, nentries,
      sizeof *np));
1017

1018 1019
   if (np == NULL)
   {
1020 1021
      /* Out of memory or too many chunks */
      png_chunk_report(png_ptr, "too many sPLT chunks", PNG_CHUNK_WRITE_ERROR);
1022

1023
      return;
1024
   }
1025

1026
   png_free(png_ptr, info_ptr->splt_palettes);
1027 1028
   info_ptr->splt_palettes = np;
   info_ptr->free_me |= PNG_FREE_SPLT;
1029

1030 1031 1032
   np += info_ptr->splt_palettes_num;

   do
1033
   {
1034
      png_size_t length;
1035

1036 1037
      /* Skip invalid input entries */
      if (entries->name == NULL || entries->entries == NULL)
1038
      {
1039 1040 1041
         /* png_handle_sPLT doesn't do this, so this is an app error */
         png_app_error(png_ptr, "png_set_sPLT: invalid sPLT");
         /* Just skip the invalid entry */
1042
         continue;
1043
      }
1044

1045 1046
      np->depth = entries->depth;

1047 1048
      /* In the event of out-of-memory just return - there's no point keeping
       * on trying to add sPLT chunks.
1049 1050 1051 1052 1053 1054
       */
      length = strlen(entries->name) + 1;
      np->name = png_voidcast(png_charp, png_malloc_base(png_ptr, length));

      if (np->name == NULL)
         break;
1055

1056 1057 1058
      memcpy(np->name, entries->name, length);

      /* IMPORTANT: we have memory now that won't get freed if something else
1059 1060
       * goes wrong; this code must free it.  png_malloc_array produces no
       * warnings; use a png_chunk_report (below) if there is an error.
1061 1062 1063 1064 1065
       */
      np->entries = png_voidcast(png_sPLT_entryp, png_malloc_array(png_ptr,
          entries->nentries, sizeof (png_sPLT_entry)));

      if (np->entries == NULL)
1066
      {
1067
         png_free(png_ptr, np->name);
1068
         np->name = NULL;
1069
         break;
1070
      }
1071

1072 1073 1074 1075 1076 1077
      np->nentries = entries->nentries;
      /* This multiply can't overflow because png_malloc_array has already
       * checked it when doing the allocation.
       */
      memcpy(np->entries, entries->entries,
         entries->nentries * sizeof (png_sPLT_entry));
1078

1079 1080 1081 1082 1083 1084
      /* Note that 'continue' skips the advance of the out pointer and out
       * count, so an invalid entry is not added.
       */
      info_ptr->valid |= PNG_INFO_sPLT;
      ++(info_ptr->splt_palettes_num);
      ++np;
1085
   }
1086
   while (++entries, --nentries);
1087

1088 1089
   if (nentries > 0)
      png_chunk_report(png_ptr, "sPLT out of memory", PNG_CHUNK_WRITE_ERROR);
1090
}
1091
#endif /* sPLT */
1092

1093 1094 1095 1096 1097 1098 1099
#ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED
static png_byte
check_location(png_const_structrp png_ptr, int location)
{
   location &= (PNG_HAVE_IHDR|PNG_HAVE_PLTE|PNG_AFTER_IDAT);

   /* New in 1.6.0; copy the location and check it.  This is an API
1100
    * change; previously the app had to use the
1101 1102
    * png_set_unknown_chunk_location API below for each chunk.
    */
1103
   if (location == 0 && (png_ptr->mode & PNG_IS_READ_STRUCT) == 0)
1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
   {
      /* Write struct, so unknown chunks come from the app */
      png_app_warning(png_ptr,
         "png_set_unknown_chunks now expects a valid location");
      /* Use the old behavior */
      location = (png_byte)(png_ptr->mode &
         (PNG_HAVE_IHDR|PNG_HAVE_PLTE|PNG_AFTER_IDAT));
   }

   /* This need not be an internal error - if the app calls
    * png_set_unknown_chunks on a read pointer it must get the location right.
    */
   if (location == 0)
      png_error(png_ptr, "invalid location in png_set_unknown_chunks");

   /* Now reduce the location to the top-most set bit by removing each least
    * significant bit in turn.
    */
   while (location != (location & -location))
      location &= ~(location & -location);

   /* The cast is safe because 'location' is a bit mask and only the low four
    * bits are significant.
    */
   return (png_byte)location;
}

1131
void PNGAPI
1132
png_set_unknown_chunks(png_const_structrp png_ptr,
1133
   png_inforp info_ptr, png_const_unknown_chunkp unknowns, int num_unknowns)
1134
{
1135 1136
   png_unknown_chunkp np;

1137
   if (png_ptr == NULL || info_ptr == NULL || num_unknowns <= 0 ||
1138
       unknowns == NULL)
1139
      return;
1140

1141 1142 1143 1144 1145 1146 1147 1148
   /* Check for the failure cases where support has been disabled at compile
    * time.  This code is hardly ever compiled - it's here because
    * STORE_UNKNOWN_CHUNKS is set by both read and write code (compiling in this
    * code) but may be meaningless if the read or write handling of unknown
    * chunks is not compiled in.
    */
#  if !defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED) && \
      defined(PNG_READ_SUPPORTED)
1149
      if ((png_ptr->mode & PNG_IS_READ_STRUCT) != 0)
1150 1151
      {
         png_app_error(png_ptr, "no unknown chunk support on read");
1152

1153 1154 1155 1156 1157
         return;
      }
#  endif
#  if !defined(PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED) && \
      defined(PNG_WRITE_SUPPORTED)
1158
      if ((png_ptr->mode & PNG_IS_READ_STRUCT) == 0)
1159 1160
      {
         png_app_error(png_ptr, "no unknown chunk support on write");
1161

1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
         return;
      }
#  endif

   /* Prior to 1.6.0 this code used png_malloc_warn; however, this meant that
    * unknown critical chunks could be lost with just a warning resulting in
    * undefined behavior.  Now png_chunk_report is used to provide behavior
    * appropriate to read or write.
    */
   np = png_voidcast(png_unknown_chunkp, png_realloc_array(png_ptr,
         info_ptr->unknown_chunks, info_ptr->unknown_chunks_num, num_unknowns,
         sizeof *np));
1174 1175 1176

   if (np == NULL)
   {
1177 1178
      png_chunk_report(png_ptr, "too many unknown chunks",
         PNG_CHUNK_WRITE_ERROR);
1179

1180 1181 1182
      return;
   }

1183
   png_free(png_ptr, info_ptr->unknown_chunks);
1184 1185
   info_ptr->unknown_chunks = np; /* safe because it is initialized */
   info_ptr->free_me |= PNG_FREE_UNKN;
1186

1187
   np += info_ptr->unknown_chunks_num;
1188

1189 1190 1191 1192 1193 1194 1195 1196
   /* Increment unknown_chunks_num each time round the loop to protect the
    * just-allocated chunk data.
    */
   for (; num_unknowns > 0; --num_unknowns, ++unknowns)
   {
      memcpy(np->name, unknowns->name, (sizeof np->name));
      np->name[(sizeof np->name)-1] = '\0';
      np->location = check_location(png_ptr, unknowns->location);
1197

1198 1199 1200 1201 1202
      if (unknowns->size == 0)
      {
         np->data = NULL;
         np->size = 0;
      }
1203

1204 1205
      else
      {
1206 1207
         np->data = png_voidcast(png_bytep,
            png_malloc_base(png_ptr, unknowns->size));
1208

1209
         if (np->data == NULL)
1210
         {
1211 1212 1213 1214
            png_chunk_report(png_ptr, "unknown chunk: out of memory",
               PNG_CHUNK_WRITE_ERROR);
            /* But just skip storing the unknown chunk */
            continue;
1215 1216
         }

1217 1218
         memcpy(np->data, unknowns->data, unknowns->size);
         np->size = unknowns->size;
1219
      }
1220

1221 1222 1223 1224 1225 1226 1227
      /* These increments are skipped on out-of-memory for the data - the
       * unknown chunk entry gets overwritten if the png_chunk_report returns.
       * This is correct in the read case (the chunk is just dropped.)
       */
      ++np;
      ++(info_ptr->unknown_chunks_num);
   }
1228
}
1229

1230
void PNGAPI
1231
png_set_unknown_chunk_location(png_const_structrp png_ptr, png_inforp info_ptr,
1232
    int chunk, int location)
1233
{
1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
   /* This API is pretty pointless in 1.6.0 because the location can be set
    * before the call to png_set_unknown_chunks.
    *
    * TODO: add a png_app_warning in 1.7
    */
   if (png_ptr != NULL && info_ptr != NULL && chunk >= 0 &&
      chunk < info_ptr->unknown_chunks_num)
   {
      if ((location & (PNG_HAVE_IHDR|PNG_HAVE_PLTE|PNG_AFTER_IDAT)) == 0)
      {
         png_app_error(png_ptr, "invalid unknown chunk location");
         /* Fake out the pre 1.6.0 behavior: */
1246
         if ((location & PNG_HAVE_IDAT) != 0) /* undocumented! */
1247 1248 1249 1250 1251 1252 1253 1254 1255
            location = PNG_AFTER_IDAT;

         else
            location = PNG_HAVE_IHDR; /* also undocumented */
      }

      info_ptr->unknown_chunks[chunk].location =
         check_location(png_ptr, location);
   }
1256
}
1257
#endif /* STORE_UNKNOWN_CHUNKS */
1258

1259
#ifdef PNG_MNG_FEATURES_SUPPORTED
1260
png_uint_32 PNGAPI
1261
png_permit_mng_features (png_structrp png_ptr, png_uint_32 mng_features)
1262
{
1263
   png_debug(1, "in png_permit_mng_features");
1264

1265
   if (png_ptr == NULL)
1266
      return 0;
1267

1268
   png_ptr->mng_features_permitted = mng_features & PNG_ALL_MNG_FEATURES;
1269

1270
   return png_ptr->mng_features_permitted;
1271 1272
}
#endif
1273

1274
#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
1275 1276 1277 1278 1279 1280 1281 1282
static unsigned int
add_one_chunk(png_bytep list, unsigned int count, png_const_bytep add, int keep)
{
   unsigned int i;

   /* Utility function: update the 'keep' state of a chunk if it is already in
    * the list, otherwise add it to the list.
    */
1283
   for (i=0; i<count; ++i, list += 5)
1284
   {
1285 1286 1287
      if (memcmp(list, add, 4) == 0)
      {
         list[4] = (png_byte)keep;
1288

1289 1290
         return count;
      }
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
   }

   if (keep != PNG_HANDLE_CHUNK_AS_DEFAULT)
   {
      ++count;
      memcpy(list, add, 4);
      list[4] = (png_byte)keep;
   }

   return count;
}

1303 1304
void PNGAPI
png_set_keep_unknown_chunks(png_structrp png_ptr, int keep,
1305
    png_const_bytep chunk_list, int num_chunks_in)
1306
{
1307 1308 1309
   png_bytep new_list;
   unsigned int num_chunks, old_num_chunks;

1310 1311
   if (png_ptr == NULL)
      return;
1312

1313
   if (keep < 0 || keep >= PNG_HANDLE_CHUNK_LAST)
1314
   {
1315
      png_app_error(png_ptr, "png_set_keep_unknown_chunks: invalid keep");
1316

1317 1318
      return;
   }
1319

1320 1321 1322
   if (num_chunks_in <= 0)
   {
      png_ptr->unknown_default = keep;
1323

1324 1325 1326 1327
      /* '0' means just set the flags, so stop here */
      if (num_chunks_in == 0)
        return;
   }
1328

1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354
   if (num_chunks_in < 0)
   {
      /* Ignore all unknown chunks and all chunks recognized by
       * libpng except for IHDR, PLTE, tRNS, IDAT, and IEND
       */
      static PNG_CONST png_byte chunks_to_ignore[] = {
         98,  75,  71,  68, '\0',  /* bKGD */
         99,  72,  82,  77, '\0',  /* cHRM */
        103,  65,  77,  65, '\0',  /* gAMA */
        104,  73,  83,  84, '\0',  /* hIST */
        105,  67,  67,  80, '\0',  /* iCCP */
        105,  84,  88, 116, '\0',  /* iTXt */
        111,  70,  70, 115, '\0',  /* oFFs */
        112,  67,  65,  76, '\0',  /* pCAL */
        112,  72,  89, 115, '\0',  /* pHYs */
        115,  66,  73,  84, '\0',  /* sBIT */
        115,  67,  65,  76, '\0',  /* sCAL */
        115,  80,  76,  84, '\0',  /* sPLT */
        115,  84,  69,  82, '\0',  /* sTER */
        115,  82,  71,  66, '\0',  /* sRGB */
        116,  69,  88, 116, '\0',  /* tEXt */
        116,  73,  77,  69, '\0',  /* tIME */
        122,  84,  88, 116, '\0'   /* zTXt */
      };

      chunk_list = chunks_to_ignore;
1355
      num_chunks = (unsigned int)/*SAFE*/(sizeof chunks_to_ignore)/5U;
1356
   }
1357

1358 1359 1360 1361 1362 1363 1364 1365
   else /* num_chunks_in > 0 */
   {
      if (chunk_list == NULL)
      {
         /* Prior to 1.6.0 this was silently ignored, now it is an app_error
          * which can be switched off.
          */
         png_app_error(png_ptr, "png_set_keep_unknown_chunks: no chunk list");
1366

1367 1368 1369 1370
         return;
      }

      num_chunks = num_chunks_in;
1371 1372
   }

1373 1374 1375 1376 1377 1378 1379 1380 1381
   old_num_chunks = png_ptr->num_chunk_list;
   if (png_ptr->chunk_list == NULL)
      old_num_chunks = 0;

   /* Since num_chunks is always restricted to UINT_MAX/5 this can't overflow.
    */
   if (num_chunks + old_num_chunks > UINT_MAX/5)
   {
      png_app_error(png_ptr, "png_set_keep_unknown_chunks: too many chunks");
1382

1383
      return;
1384
   }
1385

1386 1387 1388 1389
   /* If these chunks are being reset to the default then no more memory is
    * required because add_one_chunk above doesn't extend the list if the 'keep'
    * parameter is the default.
    */
1390
   if (keep != 0)
1391 1392 1393
   {
      new_list = png_voidcast(png_bytep, png_malloc(png_ptr,
          5 * (num_chunks + old_num_chunks)));
1394

1395 1396 1397 1398 1399 1400
      if (old_num_chunks > 0)
         memcpy(new_list, png_ptr->chunk_list, 5*old_num_chunks);
   }

   else if (old_num_chunks > 0)
      new_list = png_ptr->chunk_list;
1401

1402 1403 1404 1405 1406 1407 1408 1409 1410
   else
      new_list = NULL;

   /* Add the new chunks together with each one's handling code.  If the chunk
    * already exists the code is updated, otherwise the chunk is added to the
    * end.  (In libpng 1.6.0 order no longer matters because this code enforces
    * the earlier convention that the last setting is the one that is used.)
    */
   if (new_list != NULL)
1411
   {
1412 1413 1414 1415 1416
      png_const_bytep inlist;
      png_bytep outlist;
      unsigned int i;

      for (i=0; i<num_chunks; ++i)
1417
      {
1418 1419
         old_num_chunks = add_one_chunk(new_list, old_num_chunks,
            chunk_list+5*i, keep);
1420
      }
1421 1422 1423 1424

      /* Now remove any spurious 'default' entries. */
      num_chunks = 0;
      for (i=0, inlist=outlist=new_list; i<old_num_chunks; ++i, inlist += 5)
1425
      {
1426 1427 1428 1429 1430 1431 1432
         if (inlist[4])
         {
            if (outlist != inlist)
               memcpy(outlist, inlist, 5);
            outlist += 5;
            ++num_chunks;
         }
1433
      }
1434 1435 1436 1437 1438 1439 1440 1441 1442

      /* This means the application has removed all the specialized handling. */
      if (num_chunks == 0)
      {
         if (png_ptr->chunk_list != new_list)
            png_free(png_ptr, new_list);

         new_list = NULL;
      }
1443
   }
1444

1445 1446 1447 1448
   else
      num_chunks = 0;

   png_ptr->num_chunk_list = num_chunks;
1449

1450 1451 1452 1453
   if (png_ptr->chunk_list != new_list)
   {
      if (png_ptr->chunk_list != NULL)
         png_free(png_ptr, png_ptr->chunk_list);
1454

1455 1456
      png_ptr->chunk_list = new_list;
   }
1457 1458
}
#endif
1459

1460
#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
1461
void PNGAPI
1462
png_set_read_user_chunk_fn(png_structrp png_ptr, png_voidp user_chunk_ptr,
1463
    png_user_chunk_ptr read_user_chunk_fn)
1464
{
1465
   png_debug(1, "in png_set_read_user_chunk_fn");
1466

1467 1468
   if (png_ptr == NULL)
      return;
1469

1470 1471 1472 1473
   png_ptr->read_user_chunk_fn = read_user_chunk_fn;
   png_ptr->user_chunk_ptr = user_chunk_ptr;
}
#endif
1474

1475
#ifdef PNG_INFO_IMAGE_SUPPORTED
1476
void PNGAPI
1477 1478
png_set_rows(png_const_structrp png_ptr, png_inforp info_ptr,
    png_bytepp row_pointers)
1479
{
1480
   png_debug1(1, "in %s storage function", "rows");
1481

1482 1483 1484
   if (png_ptr == NULL || info_ptr == NULL)
      return;

1485 1486
   if (info_ptr->row_pointers != NULL &&
       (info_ptr->row_pointers != row_pointers))
1487
      png_free_data(png_ptr, info_ptr, PNG_FREE_ROWS, 0);
1488

1489
   info_ptr->row_pointers = row_pointers;
1490

1491
   if (row_pointers != NULL)
1492
      info_ptr->valid |= PNG_INFO_IDAT;
1493 1494 1495
}
#endif

1496
void PNGAPI
1497
png_set_compression_buffer_size(png_structrp png_ptr, png_size_t size)
1498
{
1499 1500
    if (png_ptr == NULL)
       return;
1501

1502 1503
    if (size == 0 || size > PNG_UINT_31_MAX)
       png_error(png_ptr, "invalid compression buffer size");
1504

1505
#  ifdef PNG_SEQUENTIAL_READ_SUPPORTED
1506
      if ((png_ptr->mode & PNG_IS_READ_STRUCT) != 0)
1507 1508 1509 1510 1511 1512 1513
      {
         png_ptr->IDAT_read_size = (png_uint_32)size; /* checked above */
         return;
      }
#  endif

#  ifdef PNG_WRITE_SUPPORTED
1514
      if ((png_ptr->mode & PNG_IS_READ_STRUCT) == 0)
1515 1516 1517 1518 1519
      {
         if (png_ptr->zowner != 0)
         {
            png_warning(png_ptr,
              "Compression buffer size cannot be changed because it is in use");
1520

1521 1522
            return;
         }
1523

1524
#ifndef __COVERITY__
1525 1526 1527 1528 1529 1530
         if (size > ZLIB_IO_MAX)
         {
            png_warning(png_ptr,
               "Compression buffer size limited to system maximum");
            size = ZLIB_IO_MAX; /* must fit */
         }
1531
#endif
1532

1533
         if (size < 6)
1534 1535 1536 1537 1538 1539
         {
            /* Deflate will potentially go into an infinite loop on a SYNC_FLUSH
             * if this is permitted.
             */
            png_warning(png_ptr,
               "Compression buffer size cannot be reduced below 6");
1540

1541 1542
            return;
         }
1543

1544 1545 1546 1547 1548 1549 1550
         if (png_ptr->zbuffer_size != size)
         {
            png_free_buffer_list(png_ptr, &png_ptr->zbuffer_list);
            png_ptr->zbuffer_size = (uInt)size;
         }
      }
#  endif
1551
}
1552 1553

void PNGAPI
1554
png_set_invalid(png_const_structrp png_ptr, png_inforp info_ptr, int mask)
1555
{
1556
   if (png_ptr != NULL && info_ptr != NULL)
1557
      info_ptr->valid &= ~mask;
1558
}
1559

1560

1561
#ifdef PNG_SET_USER_LIMITS_SUPPORTED
1562
/* This function was added to libpng 1.2.6 */
1563
void PNGAPI
1564
png_set_user_limits (png_structrp png_ptr, png_uint_32 user_width_max,
1565 1566
    png_uint_32 user_height_max)
{
1567 1568 1569 1570 1571 1572
   /* Images with dimensions larger than these limits will be
    * rejected by png_set_IHDR().  To accept any PNG datastream
    * regardless of dimensions, set both limits to 0x7ffffffL.
    */
   if (png_ptr == NULL)
      return;
1573

1574 1575
   png_ptr->user_width_max = user_width_max;
   png_ptr->user_height_max = user_height_max;
1576
}
1577

1578
/* This function was added to libpng 1.4.0 */
1579
void PNGAPI
1580
png_set_chunk_cache_max (png_structrp png_ptr, png_uint_32 user_chunk_cache_max)
1581
{
1582 1583
   if (png_ptr != NULL)
      png_ptr->user_chunk_cache_max = user_chunk_cache_max;
1584 1585 1586 1587
}

/* This function was added to libpng 1.4.1 */
void PNGAPI
1588
png_set_chunk_malloc_max (png_structrp png_ptr,
1589
    png_alloc_size_t user_chunk_malloc_max)
1590
{
1591
   if (png_ptr != NULL)
1592
      png_ptr->user_chunk_malloc_max = user_chunk_malloc_max;
1593
}
1594
#endif /* ?SET_USER_LIMITS */
1595

1596

1597
#ifdef PNG_BENIGN_ERRORS_SUPPORTED
1598
void PNGAPI
1599
png_set_benign_errors(png_structrp png_ptr, int allowed)
1600
{
1601
   png_debug(1, "in png_set_benign_errors");
1602

1603 1604 1605 1606 1607 1608
   /* If allowed is 1, png_benign_error() is treated as a warning.
    *
    * If allowed is 0, png_benign_error() is treated as an error (which
    * is the default behavior if png_set_benign_errors() is not called).
    */

1609
   if (allowed != 0)
1610 1611
      png_ptr->flags |= PNG_FLAG_BENIGN_ERRORS_WARN |
         PNG_FLAG_APP_WARNINGS_WARN | PNG_FLAG_APP_ERRORS_WARN;
1612

1613
   else
1614 1615
      png_ptr->flags &= ~(PNG_FLAG_BENIGN_ERRORS_WARN |
         PNG_FLAG_APP_WARNINGS_WARN | PNG_FLAG_APP_ERRORS_WARN);
1616
}
1617
#endif /* BENIGN_ERRORS */
1618 1619 1620 1621 1622 1623

#ifdef PNG_CHECK_FOR_INVALID_INDEX_SUPPORTED
   /* Whether to report invalid palette index; added at libng-1.5.10.
    * It is possible for an indexed (color-type==3) PNG file to contain
    * pixels with invalid (out-of-range) indexes if the PLTE chunk has
    * fewer entries than the image's bit-depth would allow. We recover
1624
    * from this gracefully by filling any incomplete palette with zeros
1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639
    * (opaque black).  By default, when this occurs libpng will issue
    * a benign error.  This API can be used to override that behavior.
    */
void PNGAPI
png_set_check_for_invalid_index(png_structrp png_ptr, int allowed)
{
   png_debug(1, "in png_set_check_for_invalid_index");

   if (allowed > 0)
      png_ptr->num_palette_max = 0;

   else
      png_ptr->num_palette_max = -1;
}
#endif
1640
#endif /* READ || WRITE */