435ea7
From 25b1dc917a53787dbb2532721ca22f3f36eb13c0 Mon Sep 17 00:00:00 2001
435ea7
From: Remi Collet <remi@php.net>
435ea7
Date: Tue, 10 Jun 2014 14:33:37 +0200
435ea7
Subject: [PATCH] Fixed Bug #67413 	fileinfo: cdf_read_property_info
435ea7
 insufficient boundary chec
435ea7
435ea7
Upstream:
435ea7
https://github.com/file/file/commit/93e063ee374b6a75729df9e7201fb511e47e259d
435ea7
435ea7
Adapted for C standard.
435ea7
---
435ea7
 ext/fileinfo/libmagic/cdf.c | 6 +++++-
435ea7
 1 file changed, 5 insertions(+), 1 deletion(-)
435ea7
435ea7
diff --git a/ext/fileinfo/libmagic/cdf.c b/ext/fileinfo/libmagic/cdf.c
435ea7
index ee467a6..429f3b9 100644
435ea7
--- a/src/cdf.c
435ea7
+++ b/src/cdf.c
435ea7
@@ -799,7 +799,11 @@ cdf_read_property_info(const cdf_stream_t *sst, const cdf_header_t *h,
435ea7
 	if (cdf_check_stream_offset(sst, h, e, 0, __LINE__) == -1)
435ea7
 		goto out;
435ea7
 	for (i = 0; i < sh.sh_properties; i++) {
435ea7
-		size_t ofs = CDF_GETUINT32(p, (i << 1) + 1);
435ea7
+		size_t ofs, tail = (i << 1) + 1;
435ea7
+		if (cdf_check_stream_offset(sst, h, p, tail * sizeof(uint32_t),
435ea7
+		    __LINE__) == -1)
435ea7
+			goto out;
435ea7
+		ofs = CDF_GETUINT32(p, tail);
435ea7
 		q = (const uint8_t *)(const void *)
435ea7
 		    ((const char *)(const void *)p + ofs
435ea7
 		    - 2 * sizeof(uint32_t));
435ea7
-- 
435ea7
1.9.2
435ea7