diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2016-10-26 16:26:47 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-16 10:37:56 +0000 |
commit | f33e739fc264b296cf0cc9e923f18a43a3f7399e (patch) | |
tree | 436d4d9a1f8d44773c0d75d33dc11588dd520ae8 /meta | |
parent | 719a8dcd0dd9d6e7e5e0440ffe115092af4851ea (diff) | |
download | poky-f33e739fc264b296cf0cc9e923f18a43a3f7399e.tar.gz |
tiff: Security fix CVE-2016-3623
CVE-2016-3623 libtiff: The rgb2ycbcr tool in LibTIFF 4.0.6 and earlier
allows remote attackers to cause a denial of service (divide-by-zero) by
setting the (1) v or (2) h parameter to 0.
External References:
https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-3623
http://bugzilla.maptools.org/show_bug.cgi?id=2569
Patch from:
https://github.com/vadz/libtiff/commit/bd024f07019f5d9fea236675607a69f74a66bc7b
(From OE-Core rev: d66824eee47b7513b919ea04bdf41dc48a9d85e9)
(From OE-Core rev: f0e77ffa6bbc3adc61a2abd5dbc9228e830c055d)
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-multimedia/libtiff/files/CVE-2016-3623.patch | 52 | ||||
-rw-r--r-- | meta/recipes-multimedia/libtiff/tiff_4.0.6.bb | 1 |
2 files changed, 53 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/libtiff/files/CVE-2016-3623.patch b/meta/recipes-multimedia/libtiff/files/CVE-2016-3623.patch new file mode 100644 index 0000000000..f554ac5464 --- /dev/null +++ b/meta/recipes-multimedia/libtiff/files/CVE-2016-3623.patch | |||
@@ -0,0 +1,52 @@ | |||
1 | From bd024f07019f5d9fea236675607a69f74a66bc7b Mon Sep 17 00:00:00 2001 | ||
2 | From: erouault <erouault> | ||
3 | Date: Mon, 15 Aug 2016 21:26:56 +0000 | ||
4 | Subject: [PATCH] * tools/rgb2ycbcr.c: validate values of -v and -h parameters | ||
5 | to avoid potential divide by zero. Fixes CVE-2016-3623 (bugzilla #2569) | ||
6 | |||
7 | CVE: CVE-2016-3623 | ||
8 | Upstream-Status: Backport | ||
9 | https://github.com/vadz/libtiff/commit/bd024f07019f5d9fea236675607a69f74a66bc7b | ||
10 | |||
11 | Signed-off-by: Yi Zhao <yi.zhao@windirver.com> | ||
12 | --- | ||
13 | ChangeLog | 5 +++++ | ||
14 | tools/rgb2ycbcr.c | 4 ++++ | ||
15 | 2 files changed, 9 insertions(+) | ||
16 | |||
17 | diff --git a/ChangeLog b/ChangeLog | ||
18 | index 5d60608..3e6642a 100644 | ||
19 | --- a/ChangeLog | ||
20 | +++ b/ChangeLog | ||
21 | @@ -1,5 +1,10 @@ | ||
22 | 2016-08-15 Even Rouault <even.rouault at spatialys.com> | ||
23 | |||
24 | + * tools/rgb2ycbcr.c: validate values of -v and -h parameters to | ||
25 | + avoid potential divide by zero. Fixes CVE-2016-3623 (bugzilla #2569) | ||
26 | + | ||
27 | +2016-08-15 Even Rouault <even.rouault at spatialys.com> | ||
28 | + | ||
29 | * tools/tiffcrop.c: Fix out-of-bounds write in loadImage(). | ||
30 | From patch libtiff-CVE-2016-3991.patch from | ||
31 | libtiff-4.0.3-25.el7_2.src.rpm by Nikola Forro (bugzilla #2543) | ||
32 | diff --git a/tools/rgb2ycbcr.c b/tools/rgb2ycbcr.c | ||
33 | index 3829d6b..51f4259 100644 | ||
34 | --- a/tools/rgb2ycbcr.c | ||
35 | +++ b/tools/rgb2ycbcr.c | ||
36 | @@ -95,9 +95,13 @@ main(int argc, char* argv[]) | ||
37 | break; | ||
38 | case 'h': | ||
39 | horizSubSampling = atoi(optarg); | ||
40 | + if( horizSubSampling != 1 && horizSubSampling != 2 && horizSubSampling != 4 ) | ||
41 | + usage(-1); | ||
42 | break; | ||
43 | case 'v': | ||
44 | vertSubSampling = atoi(optarg); | ||
45 | + if( vertSubSampling != 1 && vertSubSampling != 2 && vertSubSampling != 4 ) | ||
46 | + usage(-1); | ||
47 | break; | ||
48 | case 'r': | ||
49 | rowsperstrip = atoi(optarg); | ||
50 | -- | ||
51 | 2.7.4 | ||
52 | |||
diff --git a/meta/recipes-multimedia/libtiff/tiff_4.0.6.bb b/meta/recipes-multimedia/libtiff/tiff_4.0.6.bb index 713cf24d5b..466dfbb50d 100644 --- a/meta/recipes-multimedia/libtiff/tiff_4.0.6.bb +++ b/meta/recipes-multimedia/libtiff/tiff_4.0.6.bb | |||
@@ -13,6 +13,7 @@ SRC_URI = "http://download.osgeo.org/libtiff/tiff-${PV}.tar.gz \ | |||
13 | file://CVE-2016-3945.patch \ | 13 | file://CVE-2016-3945.patch \ |
14 | file://CVE-2016-3990.patch \ | 14 | file://CVE-2016-3990.patch \ |
15 | file://CVE-2016-3991.patch \ | 15 | file://CVE-2016-3991.patch \ |
16 | file://CVE-2016-3623.patch \ | ||
16 | " | 17 | " |
17 | 18 | ||
18 | SRC_URI[md5sum] = "d1d2e940dea0b5ad435f21f03d96dd72" | 19 | SRC_URI[md5sum] = "d1d2e940dea0b5ad435f21f03d96dd72" |