Blame SOURCES/0001-Fix-off-by-one-bounds-check-on-CHM-PMGI-PMGL-chunk-n.patch

08863e
From 7daeac0b9ad98c9cd5ea5f05d3028fe171ba403a Mon Sep 17 00:00:00 2001
08863e
From: Stuart Caie <kyzer@cabextract.org.uk>
08863e
Date: Sat, 12 May 2018 10:51:34 +0100
ddbc83
Subject: [PATCH 1/6] =?UTF-8?q?Fix=20off-by-one=20bounds=20check=20on=20CH?=
08863e
 =?UTF-8?q?M=20PMGI/PMGL=20chunk=20numbers=20and=20reject=20empty=20filena?=
08863e
 =?UTF-8?q?mes.=20Thanks=20to=20Hanno=20B=C3=B6ck=20for=20reporting?=
08863e
MIME-Version: 1.0
08863e
Content-Type: text/plain; charset=UTF-8
08863e
Content-Transfer-Encoding: 8bit
08863e
08863e
(cherry picked from commit 72e70a921f0f07fee748aec2274b30784e1d312a)
08863e
---
08863e
 libmspack/trunk/mspack/chmd.c | 9 ++++++---
08863e
 1 file changed, 6 insertions(+), 3 deletions(-)
08863e
08863e
diff --git a/libmspack/trunk/mspack/chmd.c b/libmspack/trunk/mspack/chmd.c
08863e
index 5a6ef54..b799154 100644
08863e
--- a/libmspack/trunk/mspack/chmd.c
08863e
+++ b/libmspack/trunk/mspack/chmd.c
08863e
@@ -1,5 +1,5 @@
08863e
 /* This file is part of libmspack.
08863e
- * (C) 2003-2011 Stuart Caie.
08863e
+ * (C) 2003-2018 Stuart Caie.
08863e
  *
08863e
  * libmspack is free software; you can redistribute it and/or modify it under
08863e
  * the terms of the GNU Lesser General Public License (LGPL) version 2.1
08863e
@@ -397,7 +397,7 @@ static int chmd_read_headers(struct mspack_system *sys, struct mspack_file *fh,
08863e
     D(("first pmgl chunk is after last pmgl chunk"))
08863e
     return MSPACK_ERR_DATAFORMAT;
08863e
   }
08863e
-  if (chm->index_root != 0xFFFFFFFF && chm->index_root > chm->num_chunks) {
08863e
+  if (chm->index_root != 0xFFFFFFFF && chm->index_root >= chm->num_chunks) {
08863e
     D(("index_root outside valid range"))
08863e
     return MSPACK_ERR_DATAFORMAT;
08863e
   }
08863e
@@ -447,7 +447,10 @@ static int chmd_read_headers(struct mspack_system *sys, struct mspack_file *fh,
08863e
     while (num_entries--) {
08863e
       READ_ENCINT(name_len);
08863e
       if (name_len > (unsigned int) (end - p)) goto chunk_end;
08863e
+      /* consider blank filenames to be an error */
08863e
+      if (name_len == 0) goto chunk_end;
08863e
       name = p; p += name_len;
08863e
+
08863e
       READ_ENCINT(section);
08863e
       READ_ENCINT(offset);
08863e
       READ_ENCINT(length);
08863e
@@ -622,7 +625,7 @@ static unsigned char *read_chunk(struct mschm_decompressor_p *self,
08863e
     unsigned char *buf;
08863e
 
08863e
     /* check arguments - most are already checked by chmd_fast_find */
08863e
-    if (chunk_num > chm->num_chunks) return NULL;
08863e
+    if (chunk_num >= chm->num_chunks) return NULL;
08863e
     
08863e
     /* ensure chunk cache is available */
08863e
     if (!chm->chunk_cache) {
08863e
-- 
ddbc83
2.22.0
08863e