]> code.ossystems Code Review - openembedded-core.git/commitdiff
insane: detect and warn about relocations in .text
authorPhil Blundell <philb@gnu.org>
Wed, 3 Oct 2012 10:24:12 +0000 (11:24 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 12 Nov 2012 12:50:20 +0000 (12:50 +0000)
Signed-off-by: Phil Blundell <pb@pbcl.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/insane.bbclass

index d51d1a1e0041c31cb8ca855dc98330309a9811c9..34bcd98e8d198a6f7a54710411a0ad360b0348d9 100644 (file)
@@ -113,7 +113,7 @@ def package_qa_get_machine_dict():
 
 
 # Currently not being used by default "desktop"
-WARN_QA ?= "ldflags useless-rpaths rpaths unsafe-references-in-binaries unsafe-references-in-scripts staticdev libdir xorg-driver-abi"
+WARN_QA ?= "ldflags useless-rpaths rpaths unsafe-references-in-binaries unsafe-references-in-scripts staticdev libdir xorg-driver-abi textrel"
 ERROR_QA ?= "dev-so debug-deps dev-deps debug-files arch la2 pkgconfig la perms dep-cmp"
 
 ALL_QA = "${WARN_QA} ${ERROR_QA}"
@@ -446,6 +446,30 @@ def package_qa_check_desktop(path, name, d, elf, messages):
         for l in output:
             messages.append("Desktop file issue: " + l.strip())
 
+QAPATHTEST[textrel] = "package_qa_textrel"
+def package_qa_textrel(path, name, d, elf, messages):
+    """
+    Check if the binary contains relocations in .text
+    """
+
+    if not elf:
+        return
+
+    if os.path.islink(path):
+        return
+
+    phdrs = elf.run_objdump("-p", d)
+    sane = True
+
+    import re
+    textrel_re = re.compile("\s+TEXTREL\s+")
+    for line in phdrs.split("\n"):
+        if textrel_re.match(line):
+          sane = False
+
+    if not sane:
+        messages.append("ELF binary '%s' has relocations in .text" % path)
+
 QAPATHTEST[ldflags] = "package_qa_hash_style"
 def package_qa_hash_style(path, name, d, elf, messages):
     """