In-memory nested archives
authorAlan Modra <amodra@gmail.com>
Mon, 20 Feb 2023 00:44:59 +0000 (11:14 +1030)
committerAlan Modra <amodra@gmail.com>
Mon, 20 Feb 2023 00:51:36 +0000 (11:21 +1030)
alpha-linuxecoff has compressed archives that are decompressed to a
bfd-in-memory.  We'd need to handle quite a lot of corner cases to
support nesting of such archives, so just stop it before we run into
segfaults later.

* opncls.c (_bfd_new_bfd_contained_in): Prohibit nested
archives in memory.

bfd/opncls.c

index eeac5825dbf9cb9f02b049d8ea4a6937e196ad45..f0f4ed55ca40131e57baa4077e386cbca8eeda54 100644 (file)
@@ -103,6 +103,12 @@ _bfd_new_bfd_contained_in (bfd *obfd)
 {
   bfd *nbfd;
 
+  /* Nested archives in bims are unsupported.  */
+  if ((obfd->flags & BFD_IN_MEMORY) != 0)
+    {
+      bfd_set_error (bfd_error_malformed_archive);
+      return NULL;
+    }
   nbfd = _bfd_new_bfd ();
   if (nbfd == NULL)
     return NULL;