summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <sandmann@daimi.au.dk>2010-11-09 01:40:16 -0500
committerSøren Sandmann Pedersen <sandmann@daimi.au.dk>2011-01-27 17:00:02 -0500
commit395f527c8326e50cfa705f6afc1c6faf4fcde07b (patch)
treeb4d6e43e512ad2d01ab5a246ad04a045608ac3c0
parent29496fd3b9c9522ee89964c4775b6f726d94c41e (diff)
Don't compute CRC32s that we know will fail.
If two files both have build-ids and those build-ids don't match, there is no point computing the CRCs.
-rw-r--r--binfile.c22
1 files changed, 19 insertions, 3 deletions
diff --git a/binfile.c b/binfile.c
index 95613db..8a2cfed 100644
--- a/binfile.c
+++ b/binfile.c
@@ -158,11 +158,14 @@ get_debuglink_file (ElfParser *elf,
guint32 crc32;
GList *tries = NULL, *list;
ElfParser *result = NULL;
+ const char *build_id;
if (!elf)
return NULL;
basename = elf_parser_get_debug_link (elf, &crc32);
+
+ build_id = elf_parser_get_build_id (elf);
#if 0
g_print (" debug link for %s is %s\n", filename, basename);
@@ -183,9 +186,18 @@ get_debuglink_file (ElfParser *elf,
const char *name = list->data;
ElfParser *parser = elf_parser_new (name, NULL);
guint32 file_crc;
+ const char *file_build_id;
if (parser)
{
+ /* If both files have build ids, and they don't match,
+ * there is no point computing a CRC32 that we know
+ * will fail
+ */
+ file_build_id = elf_parser_get_build_id (parser);
+ if (build_id && file_build_id && strcmp (build_id, file_build_id) != 0)
+ goto skip;
+
file_crc = elf_parser_get_crc32 (parser);
if (file_crc == crc32)
@@ -197,9 +209,13 @@ get_debuglink_file (ElfParser *elf,
else
{
if (!already_warned (name))
- g_print ("warning: %s has wrong crc \n", name);
+ {
+ g_print ("warning: %s has wrong crc %x, %s has crc %x)\n",
+ name, file_crc, filename, crc32);
+ }
}
-
+
+ skip:
elf_parser_free (parser);
}
}
@@ -430,7 +446,7 @@ bin_file_lookup_symbol (bin_file_t *bin_file,
gboolean
bin_file_check_inode (bin_file_t *bin_file,
- ino_t inode)
+ ino_t inode)
{
if (bin_file->inode == inode)
return TRUE;