Correct readelf dynamic section buffer overlow test
authorAlan Modra <amodra@gmail.com>
Thu, 16 Jul 2015 14:43:22 +0000 (00:13 +0930)
committerAlan Modra <amodra@gmail.com>
Thu, 16 Jul 2015 14:57:10 +0000 (00:27 +0930)
PR binutils/18672
* readelf.c (get_32bit_dynamic_section): Correct buffer limit test.
(get_64bit_dynamic_section): Likewise.

binutils/ChangeLog
binutils/readelf.c

index 4431ab8fce1aaa257f4493bdbda1b0f2cee1a01f..a68a8ea7f52f05f9bde779d17b691ddb7c0a18a8 100644 (file)
@@ -1,3 +1,9 @@
+2015-07-16  Alan Modra  <amodra@gmail.com>
+
+       PR binutils/18672
+       * readelf.c (get_32bit_dynamic_section): Correct buffer limit test.
+       (get_64bit_dynamic_section): Likewise.
+
 2015-07-14  H.J. Lu  <hongjiu.lu@intel.com>
 
        * objcopy.c (copy_file): Set BFD_COMPRESS_GABI if not
index 55faf838113d3c4f266cedee9126369400fa20a0..c313db4bc21c47966d642742df1be34b5adaf071 100644 (file)
@@ -8683,7 +8683,7 @@ get_32bit_dynamic_section (FILE * file)
      might not have the luxury of section headers.  Look for the DT_NULL
      terminator to determine the number of entries.  */
   for (ext = edyn, dynamic_nent = 0;
-       (char *) ext < (char *) edyn + dynamic_size - sizeof (* entry);
+       (char *) (ext + 1) <= (char *) edyn + dynamic_size;
        ext++)
     {
       dynamic_nent++;
@@ -8731,8 +8731,8 @@ get_64bit_dynamic_section (FILE * file)
      might not have the luxury of section headers.  Look for the DT_NULL
      terminator to determine the number of entries.  */
   for (ext = edyn, dynamic_nent = 0;
-       /* PR 17533 file: 033-67080-0.004 - do not read off the end of the buffer.  */
-       (char *) ext < ((char *) edyn) + dynamic_size - sizeof (* ext);
+       /* PR 17533 file: 033-67080-0.004 - do not read past end of buffer.  */
+       (char *) (ext + 1) <= (char *) edyn + dynamic_size;
        ext++)
     {
       dynamic_nent++;