Blame SOURCES/file-5.11-CVE-2014-0237.patch

0233e9
From 68ce2d0ea6da79b12a365e375e1c2ce882c77480 Mon Sep 17 00:00:00 2001
0233e9
From: Stanislav Malyshev <stas@php.net>
0233e9
Date: Mon, 26 May 2014 17:50:14 -0700
0233e9
Subject: [PATCH] Fix bug #67328 (fileinfo: numerous file_printf calls
0233e9
 resulting in performance degradation)
0233e9
0233e9
Upstream patch: https://github.com/file/file/commit/b8acc83781d5a24cc5101e525d15efe0482c280d
0233e9
---
0233e9
 ext/fileinfo/libmagic/cdf.c | 16 ++++------------
0233e9
 1 file changed, 4 insertions(+), 12 deletions(-)
0233e9
0233e9
diff --git a/ext/fileinfo/libmagic/cdf.c b/ext/fileinfo/libmagic/cdf.c
0233e9
index dd7177e..8dacd2f 100644
0233e9
--- a/src/cdf.c
0233e9
+++ b/src/cdf.c
83d9a8
@@ -929,7 +929,7 @@ int
0233e9
 cdf_unpack_summary_info(const cdf_stream_t *sst, const cdf_header_t *h,
0233e9
     cdf_summary_info_header_t *ssi, cdf_property_info_t **info, size_t *count)
0233e9
 {
0233e9
-	size_t i, maxcount;
0233e9
+	size_t maxcount;
0233e9
 	const cdf_summary_info_header_t *si =
0233e9
 	    CAST(const cdf_summary_info_header_t *, sst->sst_tab);
0233e9
 	const cdf_section_declaration_t *sd =
83d9a8
@@ -944,21 +944,13 @@ cdf_unpack_summary_info(const cdf_stream_t *sst, const cdf_header_t *h,
0233e9
 	ssi->si_os = CDF_TOLE2(si->si_os);
0233e9
 	ssi->si_class = si->si_class;
0233e9
 	cdf_swap_class(&ssi->si_class);
0233e9
-	ssi->si_count = CDF_TOLE2(si->si_count);
0233e9
+	ssi->si_count = CDF_TOLE4(si->si_count);
0233e9
 	*count = 0;
0233e9
 	maxcount = 0;
0233e9
 	*info = NULL;
0233e9
-	for (i = 0; i < CDF_TOLE4(si->si_count); i++) {
0233e9
-		if (i >= CDF_LOOP_LIMIT) {
0233e9
-			DPRINTF(("Unpack summary info loop limit"));
0233e9
-			errno = EFTYPE;
0233e9
-			return -1;
0233e9
-		}
0233e9
-		if (cdf_read_property_info(sst, h, CDF_TOLE4(sd->sd_offset),
0233e9
-		    info, count, &maxcount) == -1) {
0233e9
+	if (cdf_read_property_info(sst, h, CDF_TOLE4(sd->sd_offset), info,
0233e9
+		count, &maxcount) == -1) 
0233e9
 			return -1;
0233e9
-		}
0233e9
-	}
0233e9
 	return 0;
0233e9
 }
0233e9
 
0233e9
-- 
0233e9
1.9.2
0233e9