debugedit: Use standard libelf elf_strptr
authorMark Wielaard <mark@klomp.org>
Wed, 20 Apr 2022 22:05:38 +0000 (00:05 +0200)
committerMark Wielaard <mark@klomp.org>
Wed, 20 Apr 2022 22:10:30 +0000 (00:10 +0200)
The strptr function in debugedit.c does the same thing as libelf
elf_strptr. But elf_strptr handles bounds checks and invalid section
offsets better. And elf_strptr handles compressed sections.

* tools/debugedit.c (strptr): Just call elf_strptr.

Signed-off-by: Mark Wielaard <mark@klomp.org>
tools/debugedit.c

index e734dd7caadd86de2e6ac69d7ffd08c5e3cad33b..d82ae5a169dfba3966b02d8f06f3b4b46c14731a 100644 (file)
@@ -1,4 +1,5 @@
 /* Copyright (C) 2001-2003, 2005, 2007, 2009-2011, 2016, 2017 Red Hat, Inc.
+   Copyright (C) 2022 Mark J. Wielaard <mark@klomp.org>
    Written by Alexander Larsson <alexl@redhat.com>, 2002
    Based on code by Jakub Jelinek <jakub@redhat.com>, 2001.
    String/Line table rewriting by Mark Wielaard <mjw@redhat.com>, 2017.
@@ -295,25 +296,9 @@ buf_read_ube32 (unsigned char *data)
 }
 
 static const char *
-strptr (DSO *dso, int sec, off_t offset)
+strptr (DSO *dso, size_t sec, size_t offset)
 {
-  Elf_Scn *scn;
-  Elf_Data *data;
-
-  scn = dso->scn[sec];
-  if (offset >= 0 && (GElf_Addr) offset < dso->shdr[sec].sh_size)
-    {
-      data = NULL;
-      while ((data = elf_getdata (scn, data)) != NULL)
-       {
-         if (data->d_buf
-             && offset >= data->d_off
-             && offset < data->d_off + data->d_size)
-           return (const char *) data->d_buf + (offset - data->d_off);
-       }
-    }
-
-  return NULL;
+  return elf_strptr (dso->elf, sec, offset);
 }
 
 
This page took 0.069393 seconds and 5 git commands to generate.