Blame SOURCES/wavpack-0003-issue-28-fix-buffer-overflows-and-bad-allocs-on-corr.patch

bc994d
From: David Bryant <david@wavpack.com>
bc994d
Date: Sun, 11 Feb 2018 16:37:47 -0800
bc994d
Subject: [PATCH] issue #28, fix buffer overflows and bad allocs on corrupt CAF
bc994d
 files
bc994d
bc994d
bc994d
diff --git a/cli/caff.c b/cli/caff.c
bc994d
index ae57c4b..6248a71 100644
bc994d
--- a/cli/caff.c
bc994d
+++ b/cli/caff.c
bc994d
@@ -89,8 +89,8 @@ typedef struct
bc994d
 
bc994d
 #define CAFChannelDescriptionFormat "LLLLL"
bc994d
 
bc994d
-static const char TMH_full [] = { 1,2,3,13,9,10,5,6,12,14,15,16,17,9,4,18,7,8,19,20,21 };
bc994d
-static const char TMH_std [] = { 1,2,3,11,8,9,5,6,10,12,13,14,15,7,4,16 };
bc994d
+static const char TMH_full [] = { 1,2,3,13,9,10,5,6,12,14,15,16,17,9,4,18,7,8,19,20,21,0 };
bc994d
+static const char TMH_std [] = { 1,2,3,11,8,9,5,6,10,12,13,14,15,7,4,16,0 };
bc994d
 
bc994d
 static struct {
bc994d
     uint32_t mChannelLayoutTag;     // Core Audio layout, 100 - 146 in high word, num channels in low word
bc994d
@@ -274,10 +274,19 @@ int ParseCaffHeaderConfig (FILE *infile, char *infilename, char *fourcc, Wavpack
bc994d
             }
bc994d
         }
bc994d
         else if (!strncmp (caf_chunk_header.mChunkType, "chan", 4)) {
bc994d
-            CAFChannelLayout *caf_channel_layout = malloc ((size_t) caf_chunk_header.mChunkSize);
bc994d
+            CAFChannelLayout *caf_channel_layout;
bc994d
 
bc994d
-            if (caf_chunk_header.mChunkSize < sizeof (CAFChannelLayout) ||
bc994d
-                !DoReadFile (infile, caf_channel_layout, (uint32_t) caf_chunk_header.mChunkSize, &bcount) ||
bc994d
+            if (caf_chunk_header.mChunkSize < sizeof (CAFChannelLayout) || caf_chunk_header.mChunkSize > 1024) {
bc994d
+                error_line ("this .CAF file has an invalid 'chan' chunk!");
bc994d
+                return WAVPACK_SOFT_ERROR;
bc994d
+            }
bc994d
+
bc994d
+            if (debug_logging_mode)
bc994d
+                error_line ("'chan' chunk is %d bytes", (int) caf_chunk_header.mChunkSize);
bc994d
+
bc994d
+            caf_channel_layout = malloc ((size_t) caf_chunk_header.mChunkSize);
bc994d
+
bc994d
+            if (!DoReadFile (infile, caf_channel_layout, (uint32_t) caf_chunk_header.mChunkSize, &bcount) ||
bc994d
                 bcount != caf_chunk_header.mChunkSize) {
bc994d
                     error_line ("%s is not a valid .CAF file!", infilename);
bc994d
                     free (caf_channel_layout);
bc994d
@@ -495,8 +504,15 @@ int ParseCaffHeaderConfig (FILE *infile, char *infilename, char *fourcc, Wavpack
bc994d
         }
bc994d
         else {          // just copy unknown chunks to output file
bc994d
 
bc994d
-            int bytes_to_copy = (uint32_t) caf_chunk_header.mChunkSize;
bc994d
-            char *buff = malloc (bytes_to_copy);
bc994d
+            uint32_t bytes_to_copy = (uint32_t) caf_chunk_header.mChunkSize;
bc994d
+            char *buff;
bc994d
+
bc994d
+            if (caf_chunk_header.mChunkSize < 0 || caf_chunk_header.mChunkSize > 1048576) {
bc994d
+                error_line ("%s is not a valid .CAF file!", infilename);
bc994d
+                return WAVPACK_SOFT_ERROR;
bc994d
+            }
bc994d
+
bc994d
+            buff = malloc (bytes_to_copy);
bc994d
 
bc994d
             if (debug_logging_mode)
bc994d
                 error_line ("extra unknown chunk \"%c%c%c%c\" of %d bytes",