b74969
From 4fcb9a9d1b1063a65fbeb27395de4979c75bd962 Mon Sep 17 00:00:00 2001
b74969
From: Remi Collet <remi@php.net>
b74969
Date: Tue, 3 Jun 2014 11:05:00 +0200
b74969
Subject: [PATCH] Fix bug #67326	fileinfo: cdf_read_short_sector insufficient
b74969
 boundary check
b74969
b74969
Upstream fix https://github.com/file/file/commit/6d209c1c489457397a5763bca4b28e43aac90391.patch
b74969
Only revelant part applied
b74969
---
b74969
 ext/fileinfo/libmagic/cdf.c | 4 ++--
b74969
 1 file changed, 2 insertions(+), 2 deletions(-)
b74969
b74969
diff --git a/ext/fileinfo/libmagic/cdf.c b/ext/fileinfo/libmagic/cdf.c
b74969
index 4712e84..16649f1 100644
b74969
--- a/ext/fileinfo/libmagic/cdf.c
b74969
+++ b/ext/fileinfo/libmagic/cdf.c
b74969
@@ -367,10 +367,10 @@ cdf_read_short_sector(const cdf_stream_t *sst, void *buf, size_t offs,
b74969
 	size_t ss = CDF_SHORT_SEC_SIZE(h);
b74969
 	size_t pos = CDF_SHORT_SEC_POS(h, id);
b74969
 	assert(ss == len);
b74969
-	if (pos > CDF_SEC_SIZE(h) * sst->sst_len) {
b74969
+	if (pos + len > CDF_SEC_SIZE(h) * sst->sst_len) {
b74969
 		DPRINTF(("Out of bounds read %" SIZE_T_FORMAT "u > %"
b74969
 		    SIZE_T_FORMAT "u\n",
b74969
-		    pos, CDF_SEC_SIZE(h) * sst->sst_len));
b74969
+		    pos + len, CDF_SEC_SIZE(h) * sst->sst_len));
b74969
 		return -1;
b74969
 	}
b74969
 	(void)memcpy(((char *)buf) + offs,
b74969
-- 
b74969
1.9.2
b74969