]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
objtool: Fix double-free in .cold detection error path
authorArtem Savkov <asavkov@redhat.com>
Tue, 20 Nov 2018 17:52:15 +0000 (11:52 -0600)
committerIngo Molnar <mingo@kernel.org>
Tue, 20 Nov 2018 17:59:00 +0000 (18:59 +0100)
If read_symbols() fails during second list traversal (the one dealing
with ".cold" subfunctions) it frees the symbol, but never deletes it
from the list/hash_table resulting in symbol being freed again in
elf_close(). Fix it by just returning an error, leaving cleanup to
elf_close().

Signed-off-by: Artem Savkov <asavkov@redhat.com>
Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Fixes: 13810435b9a7 ("objtool: Support GCC 8's cold subfunctions")
Link: http://lkml.kernel.org/r/beac5a9b7da9e8be90223459dcbe07766ae437dd.1542736240.git.jpoimboe@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
tools/objtool/elf.c

index 6dbb9fae0f9d4f4c54e78431f84ea3e034e07f0a..e7a7ac40e0454229cd82101735d361481d3fd7ce 100644 (file)
@@ -312,7 +312,7 @@ static int read_symbols(struct elf *elf)
                        if (!pfunc) {
                                WARN("%s(): can't find parent function",
                                     sym->name);
-                               goto err;
+                               return -1;
                        }
 
                        sym->pfunc = pfunc;