readelf looping in process_archive
authorAlan Modra <amodra@gmail.com>
Wed, 25 Mar 2020 11:55:37 +0000 (22:25 +1030)
committerAlan Modra <amodra@gmail.com>
Wed, 25 Mar 2020 12:01:07 +0000 (22:31 +1030)
With a crafted "negative" ar_hdr.ar_size it is possible to make
readelf loop.  This patch catches the overflow in a file offset
calculation.

* readelf.c (process_archive): Prevent endless loop.

binutils/ChangeLog
binutils/readelf.c

index accd265007efba09daec05da7cdc9fa90e5cd07a..2f551f10316efabae4c728ee4678d4c533dc4558 100644 (file)
@@ -1,3 +1,7 @@
+2020-03-25  Alan Modra  <amodra@gmail.com>
+
+       * readelf.c (process_archive): Prevent endless loop.
+
 2020-03-24  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR binutils/25708
index 1f0f49222fd47b9e4d204a9f7c5ae08a3a8e259d..9bc15e4d0b2a7e800988e5b0c3251680cd064069 100644 (file)
@@ -20505,11 +20505,13 @@ process_archive (Filedata * filedata, bfd_boolean is_thin_archive)
        {
          free (name);
          archive_file_offset = arch.next_arhdr_offset;
-         arch.next_arhdr_offset += archive_file_size;
-
          filedata->file_name = qualified_name;
          if (! process_object (filedata))
            ret = FALSE;
+         arch.next_arhdr_offset += archive_file_size;
+         /* Stop looping with "negative" archive_file_size.  */
+         if (arch.next_arhdr_offset < archive_file_size)
+           break;
        }
 
       free (qualified_name);
This page took 0.030488 seconds and 4 git commands to generate.