Changes in TIFF v4.0.8¶
Current Version |
v4.0.8 (tag Release-v4-0-8) |
Previous Version |
|
Master Download Site |
|
Master HTTP Site #1 |
|
Master HTTP Site #2 |
This document describes the changes made to the software between the previous and current versions (see above). If you don't find something listed here, then it was not done in this timeframe, or it was not considered important enough to be mentioned. The following information is located here:
Major changes¶
None
Software configuration changes¶
None
Library changes¶
libtiff/tif_getimage.c
,libtiff/tif_open.c
: add parenthesis to fix cppcheckclarifyCalculation
warningslibtiff/tif_predict.c
,libtiff/tif_print.c
: fix printf unsigned vs signed formatting (cppcheckinvalidPrintfArgType_uint
warnings)libtiff/tif_read.c
,libtiff/tiffiop.h
: fixuint32
overflow inTIFFReadEncodedStrip()
that caused an integer division by zero. Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2596libtiff/tif_pixarlog.c
,libtiff/tif_luv.c
: fix heap-based buffer overflow on generation of PixarLog / LUV compressed files, withColorMap
,TransferFunction
attached and nasty plays withbitspersample
. The fix for LUV has not been tested, but suffers from the same kind of issue of PixarLog. Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2604libtiff/tif_strip.c
: revert the change inTIFFNumberOfStrips()
done for MapTools bugzilla #2587 / CVE-2016-9273 since the above change is a better fix that makes it unnecessary.libtiff/tif_dirread.c
: modifyChopUpSingleUncompressedStrip()
to instantiate computenstrips
asTIFFhowmany_32(td->td_imagelength, rowsperstrip)
, instead of a logic based on the total size of data. Which is faulty is the total size of data is not sufficient to fill the whole image, and thus results in reading outside of theStripByCounts
/StripOffsets
arrays when usingTIFFReadScanline()
. Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2608.libtiff/tif_ojpeg.c
: makeOJPEGDecode()
early exit in case of failure inOJPEGPreDecode()
. This will avoid a divide by zero, and potential other issues. Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2611libtiff/tif_write.c
: fix misleading indentation as warned by GCC.libtiff/tif_fax3.h
: revert change done on 2016-01-09 that madeParam
member ofTIFFFaxTabEnt
structure auint16
to reduce size of the binary. It happens that the Hylafax software uses the tables that follow this typedef (TIFFFaxMainTable
,TIFFFaxWhiteTable
,TIFFFaxBlackTable
), although they are not in a public libtiff header. Raised by Lee Howard. Fixes MapTools bugzilla #2636libtiff/tiffio.h
,libtiff/tif_getimage.c
: addTIFFReadRGBAStripExt()
andTIFFReadRGBATileExt()
variants of the functions without ext, with an extra argument to control thestop_on_error
behaviour.libtiff/tif_getimage.c
: fix potential memory leaks in error code path ofTIFFRGBAImageBegin()
. Fixes MapTools bugzilla #2627libtiff/tif_jpeg.c
: increase libjpeg max memory usable to 10 MB instead of libjpeg 1MB default. This helps when creating files with "big" tile, without using libjpeg temporary files. Related to https://trac.osgeo.org/gdal/ticket/6757libtiff/tif_jpeg.c
: avoid integer division by zero inJPEGSetupEncode()
when horizontal or vertical sampling is set to 0. Fixes MapTools bugzilla #2653libtiff/tif_dirwrite.c
: inTIFFWriteDirectoryTagCheckedRational()
, replace assertion by runtime check to error out if passed value is strictly negative. Fixes MapTools bugzilla #2535libtiff/tif_dirread.c
: avoid division by floating point 0 inTIFFReadDirEntryCheckedRational()
andTIFFReadDirEntryCheckedSrational()
, and return 0 in that case (instead of infinity as before presumably) Apparently some sanitizers do not like those divisions by zero. Fixes MapTools bugzilla #2644libtiff/tif_dir.c
,tif_dirread.c
,tif_dirwrite.c
: implement various clampings of double to other data types to avoid undefined behaviour if the output range isn't big enough to hold the input value. Fixes MapTools bugzilla #2643, MapTools bugzilla #2642, MapTools bugzilla #2646, MapTools bugzilla #2647libtiff/tif_jpeg.c
: validateBitsPerSample
inJPEGSetupEncode()
to avoid undefined behaviour caused by invalid shift exponent. Fixes MapTools bugzilla #2648libtiff/tif_read.c
: avoid potential undefined behaviour on signed integer addition inTIFFReadRawStrip1()
inisMapped()
case. Fixes MapTools bugzilla #2650libtiff/tif_getimage.c
: add explicituint32()
cast inputagreytile
to avoidUndefinedBehaviorSanitizer
warning. Patch by Nicolás Peña. Fixes MapTools bugzilla #2658libtiff/tif_read.c
:TIFFReadBufferSetup()
: use_TIFFcalloc()
to zero initializetif_rawdata
. Fixes MapTools bugzilla #2651libtiff/tiffio.h
,tif_unix.c
,tif_win32.c
,tif_vms.c
: add_TIFFcalloc()
libtiff/tif_luv.c
,tif_lzw.c
,tif_packbits.c
: return 0 in Encode functions instead of -1 whenTIFFFlushData1()
fails. Fixes MapTools bugzilla #2130libtiff/tif_ojpeg.c
: fix leak inOJPEGReadHeaderInfoSecTablesQTable()
,OJPEGReadHeaderInfoSecTablesDcTable()
andOJPEGReadHeaderInfoSecTablesAcTable()
when read fails. Patch by Nicolás Peña. Fixes MapTools bugzilla #2659libtiff/tif_jpeg.c
: only runJPEGFixupTagsSubsampling()
if theYCbCrSubsampling
tag is not explicitly present. This helps a bit to reduce the I/O amount when the tag is present (especially on cloud hosted files).libtiff/tif_lzw.c
: inLZWPostEncode()
, increase, if necessary, the code bit-width after flushing the remaining code and before emitting the EOI code. Fixes MapTools bugzilla #1982libtiff/tif_pixarlog.c
: fix memory leak in error code path ofPixarLogSetupDecode()
. Patch by Nicolás Peña. Fixes MapTools bugzilla #2665libtiff/tif_fax3.c
,tif_predict.c
,tif_getimage.c
: fix GCC 7-Wimplicit-fallthrough
warnings.libtiff/tif_dirread.c
: fix memory leak in nonDEFER_STRILE_LOAD
mode (ie default) when there is both aStripOffsets
andTileOffsets
tag, or aStripByteCounts
andTileByteCounts
. Fixes MapTools bugzilla #2689libtiff/tif_ojpeg.c
: fix potential memory leak inOJPEGReadHeaderInfoSecTablesQTable()
,OJPEGReadHeaderInfoSecTablesDcTable()
andOJPEGReadHeaderInfoSecTablesAcTable()
. Patch by Nicolás Peña. Fixes MapTools bugzilla #2670libtiff/tif_fax3.c
: avoid crash inFax3Close()
on empty file. Patch by Alan Coopersmith + complement by myself. Fixes MapTools bugzilla #2673libtiff/tif_read.c
:TIFFFillStrip()
: add limitation to the number of bytes read in casetd_stripbytecount[strip]
is bigger than reasonable, so as to avoid excessive memory allocation.libtiff/tif_zip.c
,tif_pixarlog.c
,tif_predict.c
: fix memory leak when the underlying codec (ZIP, PixarLog) succeeds itssetupdecode()
method, butPredictorSetup()
fails. Credit to OSS-Fuzz (locally run, on GDAL)libtiff/tif_read.c
:TIFFFillStrip()
andTIFFFillTile()
: avoid excessive memory allocation in case of shorten files. Only effective on 64 bit builds and non-mapped cases. Credit to OSS-Fuzz (locally run, on GDAL)libtiff/tif_read.c
:TIFFFillStripPartial()
/TIFFSeek()
, avoid potential integer overflows with read_ahead inCHUNKY_STRIP_READ_SUPPORT
mode. Should especially occur on 32 bit platforms.libtiff/tif_read.c
:TIFFFillStripPartial()
: avoid excessive memory allocation in case of shorten files. Only effective on 64 bit builds. Credit to OSS-Fuzz (locally run, on GDAL)libtiff/tif_read.c
: updatetif_rawcc
inCHUNKY_STRIP_READ_SUPPORT
mode withtif_rawdataloaded
when callingTIFFStartStrip()
orTIFFFillStripPartial()
. This avoids reading beyondtif_rawdata()
whenbytecount > tif_rawdatasize
. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1545. Credit to OSS-Fuzzlibtiff/tif_color.c
: avoid potentialint32
overflow inTIFFYCbCrToRGBInit()
. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1533 Credit to OSS-Fuzzlibtiff/tif_pixarlog.c
,tif_luv.c
: avoid potentialint32
overflows inmultiply_ms()
andadd_ms()
. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1558 Credit to OSS-Fuzzlibtiff/tif_packbits.c
: fix out-of-buffer read inPackBitsDecode()
. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1563 Credit to OSS-Fuzzlibtiff/tif_luv.c
:LogL16InitState()
: avoid excessive memory allocation whenRowsPerStrip
tag is missing. Credit to OSS-Fuzz (locally run, on GDAL)libtiff/tif_lzw.c
: update dec_bitsleft at beginning of LZWDecode(), and update tif_rawcc at end of LZWDecode(). This is needed to properly work with the latest chnges in tif_read.c in CHUNKY_STRIP_READ_SUPPORT mode.libtiff/tif_pixarlog.c
:PixarLogDecode()
: resynctif_rawcp
withnext_in
andtif_rawcc
withavail_in
at beginning and end of function, similarly to what is done inLZWDecode()
. Likely needed so that it works properly with latest chnges intif_read.c
inCHUNKY_STRIP_READ_SUPPORT
mode. But untested...libtiff/tif_getimage.c
:initYCbCrConversion()
: add basic validation ofluma
andrefBlackWhite
coefficients (just check they are not NaN for now), to avoid potential float to int overflows. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1663 Credit to OSS Fuzzlibtiff/tif_read.c
:_TIFFVSetField()
: fix outside range cast of double to float. Credit to Google Autofuzz projectlibtiff/tif_getimage.c
:initYCbCrConversion()
: checkluma[1]
is not zero to avoid division by zero. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1665 Credit to OSS Fuzzlibtiff/tif_read.c
:_TIFFVSetField()
: fix outside range cast of double to float. Credit to Google Autofuzz projectlibtiff/tif_getimage.c
:initYCbCrConversion()
: checkluma[1]
is not zero to avoid division by zero. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1665 Credit to OSS Fuzzlibtiff/tif_getimage.c
:initYCbCrConversion()
: stricter validation forrefBlackWhite
coefficients values. To avoid invalid float to int32 conversion. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1718 Credit to OSS Fuzz
Tools changes¶
tools/fax2tiff.c
(main()
): Applied patch by Jörg Ahrens to fix passing client data for Win32 builds usingtif_win32.c
(USE_WIN32_FILEIO
defined) for file I/O. Patch was provided via email on November 20, 2016.tools/tiffcp.c
: avoiduint32
underflow incpDecodedStrips()
that can cause various issues, such as buffer overflows in the library. Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2598tools/tiffcrop.c
: fixreadContigStripsIntoBuffer()
in-i
(ignore) mode so that the output buffer is correctly incremented to avoid write outside bounds. Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2620tools/tiffcrop.c
: add 3 extra bytes at end of strip buffer inreadSeparateStripsIntoBuffer()
to avoid read outside of heap allocated buffer. Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2621tools/tiffcrop.c
: fix integer division by zero whenBitsPerSample
is missing. Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2619tools/tiffinfo.c
: fix null pointer dereference in-r
mode when the image has noStripByteCount
tag. Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2594tools/tiffcp.c
: avoid potential division by zero ifBitsPerSamples
tag is missing. Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2597tools/tif_dir.c
: whenTIFFGetField(, TIFFTAG_NUMBEROFINKS, )
is called, limit the return number of inks toSamplesPerPixel
, so that code that parses ink names doesn't go past the end of the buffer. Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2599tools/tiffcp.c
: avoid potential division by zero ifBitsPerSamples
tag is missing. Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2607tools/tiffcp.c
: fixuint32
underflow/overflow that can cause heap-based buffer overflow. Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2610tools/tiffcp.c
: replaceassert( (bps % 8) == 0 )
by a non assert check. Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2605tools/tiff2ps.c
: fix 2 heap-based buffer overflows (inPSDataBW()
andPSDataColorContig()
). Reported by Agostino Sarubbo. Fixes MapTools bugzilla #2633 and MapTools bugzilla #2634.tools/tiff2pdf.c
: prevent heap-based buffer overflow in-j
mode on a paletted image. Note: this fix errors out before the overflow happens. There could probably be a better fix. Fixes MapTools bugzilla #2635tools/tiff2pdf.c
: fix wrong usage ofmemcpy()
that can trigger unspecified behaviour. Fixes MapTools bugzilla #2638tools/tiff2pdf.c
: avoid potential invalid memory read int2p_writeproc()
. Fixes MapTools bugzilla #2639tools/tiff2pdf.c
: avoid potential heap-based overflow int2p_readwrite_pdf_image_tile()
. Fixes MapTools bugzilla #2640tools/tiffcrop.c
: remove extraneousTIFFClose()
in error code path, that caused double free. Related to MapTools bugzilla #2535tools/tiffcp.c
: error out cleanly incpContig2SeparateByRow()
andcpSeparate2ContigByRow()
ifBitsPerSample != 8
to avoid heap based overflow. Fixes MapTools bugzilla #2656 and MapTools bugzilla #2657tools/raw2tiff.c
: avoid integer division by zero. Fixes MapTools bugzilla #2631tools/tiff2ps.c
: callTIFFClose()
in error code paths.tools/fax2tiff.c
: emit appropriate message if the input file is empty. Patch by Alan Coopersmith. Fixes MapTools bugzilla #2672tools/tiff2bw.c
: closeTIFF
handle in error code path. Fixes MapTools bugzilla #2677
Contributed software changes¶
None