nm: Simplify naming of invalid sections, check shdr isn't NULL.
authorMark Wielaard <mark@klomp.org>
Sun, 28 Apr 2019 15:51:06 +0000 (17:51 +0200)
committerMark Wielaard <mark@klomp.org>
Sun, 28 Apr 2019 15:51:06 +0000 (17:51 +0200)
When shdr is NULL or the sh_name index is invalid, don't try to use
it.  Just call the section "[invalid section name]". Don't try to be
too smart by creating a dynamic invalid name using alloca to simplify
memory usage in this exceptional case.

Signed-off-by: Mark Wielaard <mark@klomp.org>
src/ChangeLog
src/nm.c

index 3786f34..3020bd7 100644 (file)
@@ -1,5 +1,10 @@
 2019-04-28  Mark Wielaard  <mark@klomp.org>
 
+       * nm.c (show_symbols_sysv): Check gelf_getshdr doesn't return
+       NULL. Simplify naming of invalid sections, don't use alloca.
+
+2019-04-28  Mark Wielaard  <mark@klomp.org>
+
        * elfcmp.c (main): Check shdr1 and shdr2 are not NULL.
 
 2019-04-03  Mark Wielaard  <mark@klomp.org>
index ffe8ca6..da1350b 100644 (file)
--- a/src/nm.c
+++ b/src/nm.c
@@ -751,19 +751,17 @@ show_symbols_sysv (Ebl *ebl, GElf_Word strndx, const char *fullname,
   while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
     {
       GElf_Shdr shdr_mem;
+      GElf_Shdr *shdr;
 
       assert (elf_ndxscn (scn) == cnt);
       cnt++;
 
-      char *name = elf_strptr (ebl->elf, shstrndx,
-                              gelf_getshdr (scn, &shdr_mem)->sh_name);
+      char *name = NULL;
+      shdr = gelf_getshdr (scn, &shdr_mem);
+      if (shdr != NULL)
+       name = elf_strptr (ebl->elf, shstrndx, shdr->sh_name);
       if (unlikely (name == NULL))
-       {
-         const size_t bufsz = sizeof "[invalid sh_name 0x12345678]";
-         name = alloca (bufsz);
-         snprintf (name, bufsz, "[invalid sh_name %#" PRIx32 "]",
-                   gelf_getshdr (scn, &shdr_mem)->sh_name);
-       }
+       name = "[invalid section name]";
       scnnames[elf_ndxscn (scn)] = name;
     }