This is the mail archive of the elfutils-devel@sourceware.org mailing list for the elfutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] libdw: Fix __libdw_form_val_len endp pointer.


While rebasing my work on top of Josh attrabbrev reading speedups
I noticed a typo/thinko in my form_val_len bound checking patch.

We should check against the die->cu->endp, not the abbrev endp.

Signed-off-by: Mark Wielaard <mjw@redhat.com>
---
 libdw/ChangeLog        | 6 ++++++
 libdw/dwarf_child.c    | 2 +-
 libdw/dwarf_getattrs.c | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/libdw/ChangeLog b/libdw/ChangeLog
index 69592a7..8b00970 100644
--- a/libdw/ChangeLog
+++ b/libdw/ChangeLog
@@ -1,3 +1,9 @@
+2014-12-11  Mark Wielaard  <mjw@redhat.com>
+
+	* dwarf_child.c (__libdw_find_attr): Call __libdw_form_val_len with
+	die->cu->endp, not the abbrev endp.
+	* dwarf_getattrs.c (dwarf_getattrs): Likewise.
+
 2014-12-10  Josh Stone  <jistone@redhat.com>
 
 	* libdwP.h (Dwarf_CU): Add startp and endp boundaries.
diff --git a/libdw/dwarf_child.c b/libdw/dwarf_child.c
index 2a5d379..46d010d 100644
--- a/libdw/dwarf_child.c
+++ b/libdw/dwarf_child.c
@@ -95,7 +95,7 @@ __libdw_find_attr (Dwarf_Die *die, unsigned int search_name,
       if (attr_form != 0)
 	{
 	  size_t len = __libdw_form_val_len (dbg, die->cu, attr_form, readp,
-					     endp);
+					     die->cu->endp);
 
 	  if (unlikely (len == (size_t) -1l))
 	    {
diff --git a/libdw/dwarf_getattrs.c b/libdw/dwarf_getattrs.c
index 9ea70fc..f6453c7 100644
--- a/libdw/dwarf_getattrs.c
+++ b/libdw/dwarf_getattrs.c
@@ -107,7 +107,7 @@ dwarf_getattrs (Dwarf_Die *die, int (*callback) (Dwarf_Attribute *, void *),
       if (attr.form != 0)
 	{
 	  size_t len = __libdw_form_val_len (dbg, die->cu, attr.form,
-					     die_addr, endp);
+					     die_addr, die->cu->endp);
 
 	  if (unlikely (len == (size_t) -1l))
 	    /* Something wrong with the file.  */
-- 
2.1.0


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]