Package: tiff / 4.2.0-1+deb11u5

CVE-2023-41175.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
From 6e2dac5f904496d127c92ddc4e56eccfca25c2ee Mon Sep 17 00:00:00 2001
From: Arie Haenel <arie.haenel@jct.ac.il>
Date: Wed, 19 Jul 2023 19:40:01 +0000
Subject: [PATCH] raw2tiff: fix integer overflow and bypass of the check (fixes
 #592)

---
 tools/raw2tiff.c | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

Index: tiff-4.2.0/tools/raw2tiff.c
===================================================================
--- tiff-4.2.0.orig/tools/raw2tiff.c
+++ tiff-4.2.0/tools/raw2tiff.c
@@ -108,6 +108,7 @@ main(int argc, char* argv[])
 	int	fd;
 	char	*outfilename = NULL;
 	TIFF	*out;
+        uint32 temp_limit_check = 0;     /* temp for integer overflow checking*/
 
 	uint32 row, col, band;
 	int	c;
@@ -219,6 +220,33 @@ main(int argc, char* argv[])
 	if (guessSize(fd, dtype, hdr_size, nbands, swab, &width, &length) < 0)
 		return EXIT_FAILURE;
 
+        /* check for integer overflow in */
+        /* hdr_size + (*width) * (*length) * nbands * depth */
+
+        if ((width == 0) || (length == 0) ){
+            fprintf(stderr, "Too large nbands value specified.\n");
+            return (EXIT_FAILURE);
+        }
+
+        temp_limit_check = nbands * depth;
+
+        if ( !temp_limit_check || length > ( TIFF_UINT32_MAX / temp_limit_check ) )  {
+            fprintf(stderr, "Too large length size specified.\n");
+            return (EXIT_FAILURE);
+        }
+        temp_limit_check = temp_limit_check * length;
+
+        if ( !temp_limit_check || width > ( TIFF_UINT32_MAX / temp_limit_check ) )  {
+            fprintf(stderr, "Too large width size specified.\n");
+            return (EXIT_FAILURE);
+        }
+        temp_limit_check = temp_limit_check * width;
+
+        if ( !temp_limit_check || hdr_size > ( TIFF_UINT32_MAX - temp_limit_check ) )  {
+            fprintf(stderr, "Too large header size specified.\n");
+            return (EXIT_FAILURE);
+        }
+
 	if (outfilename == NULL)
 		outfilename = argv[optind+1];
 	out = TIFFOpen(outfilename, "w");