objdump: report no section contents
authorAlan Modra <amodra@gmail.com>
Thu, 9 Mar 2023 12:09:30 +0000 (22:39 +1030)
committerAlan Modra <amodra@gmail.com>
Thu, 9 Mar 2023 12:18:06 +0000 (22:48 +1030)
objdump's read_section is never used for bss-style sections, so to
plug a hole that fuzzers have found, exclude sections without
SEC_HAS_CONTENTS.

* objdump.c (read_section): Report and return an error on
a no contents section.

binutils/objdump.c

index 97532bed97c8ad56aa2cd13ddef2fa2584e1e563..0e8e1980b809d151261089de373523daa17eb3a3 100644 (file)
@@ -4477,16 +4477,16 @@ read_section (bfd *abfd, const char *sect_name, bfd_byte **contents)
       return NULL;
     }
 
-  if (!bfd_malloc_and_get_section (abfd, sec, contents))
-    {
-      non_fatal (_("reading %s section of %s failed: %s"),
-                sect_name, bfd_get_filename (abfd),
-                bfd_errmsg (bfd_get_error ()));
-      exit_status = 1;
-      return NULL;
-    }
-
-  return sec;
+  if ((bfd_section_flags (sec) & SEC_HAS_CONTENTS) == 0)
+    bfd_set_error (bfd_error_no_contents);
+  else if (bfd_malloc_and_get_section (abfd, sec, contents))
+    return sec;
+
+  non_fatal (_("reading %s section of %s failed: %s"),
+            sect_name, bfd_get_filename (abfd),
+            bfd_errmsg (bfd_get_error ()));
+  exit_status = 1;
+  return NULL;
 }
 
 /* Stabs entries use a 12 byte format: