]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Fix heap-buffer address violation when reading version data from a corrupt binary.
authorNick Clifton <nickc@redhat.com>
Fri, 28 Apr 2017 10:21:53 +0000 (11:21 +0100)
committerNick Clifton <nickc@redhat.com>
Fri, 28 Apr 2017 10:21:53 +0000 (11:21 +0100)
PR binutils/21437
* readelf.c (process_version_sections): Check for underflow when
computing the start address of the auxillary version data.

binutils/ChangeLog
binutils/readelf.c

index 951673bd6ad281e08b9199acb37bc2952938025d..8bb1fc5052e01cdf0a6af61fa4e5d0d4151e8951 100644 (file)
@@ -1,3 +1,9 @@
+2017-04-28  Nick Clifton  <nickc@redhat.com>
+
+       PR binutils/21437
+       * readelf.c (process_version_sections): Check for underflow when
+       computing the start address of the auxillary version data.
+
 2017-04-28  Nick Clifton  <nickc@redhat.com>
 
        PR binutils/21438
index b57e1e029bdf0cc9a99eb2d116e89198c6eadb72..72f9dda6443f6603df80b46657130d08263dcd08 100644 (file)
@@ -10178,8 +10178,9 @@ process_version_sections (FILE * file)
                printf (_("  Index: %d  Cnt: %d  "),
                        ent.vd_ndx, ent.vd_cnt);
 
-               /* Check for overflow.  */
-               if (ent.vd_aux + sizeof (* eaux) > (size_t) (endbuf - vstart))
+               /* Check for overflow and underflow.  */
+               if (ent.vd_aux + sizeof (* eaux) > (size_t) (endbuf - vstart)
+                   || (vstart + ent.vd_aux < vstart))
                  break;
 
                vstart += ent.vd_aux;