2013-06-28 15:29:34 +02:00
|
|
|
Index: BinariesCheck.py
|
|
|
|
===================================================================
|
|
|
|
--- BinariesCheck.py.orig
|
2008-04-21 18:36:30 +02:00
|
|
|
+++ BinariesCheck.py
|
2013-06-28 15:29:34 +02:00
|
|
|
@@ -9,13 +9,15 @@
|
2011-04-21 12:12:02 +02:00
|
|
|
|
|
|
|
import re
|
|
|
|
import stat
|
|
|
|
+import os
|
|
|
|
|
|
|
|
import rpm
|
|
|
|
|
2011-04-23 11:39:44 +02:00
|
|
|
-from Filter import addDetails, printError, printWarning
|
|
|
|
+from Filter import addDetails, printError, printWarning, printInfo
|
2010-10-15 17:16:45 +02:00
|
|
|
import AbstractCheck
|
|
|
|
import Config
|
|
|
|
import Pkg
|
|
|
|
+import os
|
|
|
|
|
|
|
|
|
|
|
|
DEFAULT_SYSTEM_LIB_PATHS = (
|
2013-06-28 15:29:34 +02:00
|
|
|
@@ -42,6 +44,9 @@ class BinaryInfo:
|
2010-01-27 18:18:50 +01:00
|
|
|
unused_regex = re.compile('^\s+(\S+)')
|
2013-06-28 15:29:34 +02:00
|
|
|
exit_call_regex = create_regexp_call('_?exit')
|
|
|
|
fork_call_regex = create_regexp_call('fork')
|
2008-04-21 18:36:30 +02:00
|
|
|
+ debuginfo_regex=re.compile('^\s+\[\s*\d+\]\s+\.debug_.*\s+')
|
|
|
|
+ symtab_regex=re.compile('^\s+\[\s*\d+\]\s+\.symtab\s+')
|
2010-05-03 23:18:30 +02:00
|
|
|
+ gethostbyname_call_regex = re.compile('\s+FUNC\s+.*?\s+(gethostbyname(?:@\S+)?)(?:\s|$)')
|
2013-06-28 15:29:34 +02:00
|
|
|
# regexp for setgid setegid setresgid set(?:res|e)?gid
|
|
|
|
setgid_call_regex = create_regexp_call(['setresgid','setegid','setgid'])
|
|
|
|
setuid_call_regex = create_regexp_call(['setresuid','seteuid','setuid'])
|
|
|
|
@@ -62,7 +67,10 @@ class BinaryInfo:
|
2010-05-03 23:18:30 +02:00
|
|
|
self.stack = False
|
2009-09-16 18:41:21 +02:00
|
|
|
self.exec_stack = False
|
2009-03-13 16:06:45 +01:00
|
|
|
self.exit_calls = []
|
2010-05-03 23:18:30 +02:00
|
|
|
+ self.calls_gethostbyname = False
|
2009-09-16 18:41:21 +02:00
|
|
|
fork_called = False
|
2009-03-13 16:06:45 +01:00
|
|
|
+ self.debuginfo = 0
|
2008-04-21 18:36:30 +02:00
|
|
|
+ self.symtab=0
|
2009-03-13 16:06:45 +01:00
|
|
|
self.tail = ''
|
2008-04-21 18:36:30 +02:00
|
|
|
|
2013-06-28 15:29:34 +02:00
|
|
|
self.setgid = False
|
|
|
|
@@ -131,6 +139,11 @@ class BinaryInfo:
|
2010-05-03 23:18:30 +02:00
|
|
|
self.exec_stack = True
|
|
|
|
continue
|
|
|
|
|
|
|
|
+ r = BinaryInfo.gethostbyname_call_regex.search(l)
|
|
|
|
+ if r:
|
|
|
|
+ self.calls_gethostbyname = True
|
|
|
|
+ continue
|
|
|
|
+
|
|
|
|
if is_shlib:
|
|
|
|
r = BinaryInfo.exit_call_regex.search(l)
|
|
|
|
if r:
|
2013-06-28 15:29:34 +02:00
|
|
|
@@ -141,6 +154,14 @@ class BinaryInfo:
|
2009-09-16 18:41:21 +02:00
|
|
|
fork_called = True
|
2009-03-13 16:06:45 +01:00
|
|
|
continue
|
2008-06-25 19:08:32 +02:00
|
|
|
|
|
|
|
+ if BinaryInfo.debuginfo_regex.search(l):
|
|
|
|
+ self.debuginfo=1
|
|
|
|
+ continue
|
|
|
|
+
|
|
|
|
+ if BinaryInfo.symtab_regex.search(l):
|
|
|
|
+ self.symtab=1
|
|
|
|
+ continue
|
|
|
|
+
|
2008-04-21 18:36:30 +02:00
|
|
|
if self.non_pic:
|
2010-01-27 18:18:50 +01:00
|
|
|
self.non_pic = 'TEXTREL' in res[1]
|
2009-03-13 16:06:45 +01:00
|
|
|
|
2013-06-28 15:29:34 +02:00
|
|
|
@@ -330,13 +351,26 @@ class BinariesCheck(AbstractCheck.Abstra
|
2011-04-21 12:12:02 +02:00
|
|
|
continue
|
|
|
|
|
|
|
|
# stripped ?
|
|
|
|
- if 'not stripped' in pkgfile.magic:
|
|
|
|
+ if 'not stripped' in pkgfile.magic and \
|
|
|
|
+ (os.environ.get('BUILD_DIR', '') == '' or
|
|
|
|
+ os.environ.get('BUILD_DEBUG', '') != ''):
|
|
|
|
printWarning(pkg, 'unstripped-binary-or-object', fname)
|
|
|
|
|
|
|
|
# inspect binary file
|
2010-10-14 14:32:03 +02:00
|
|
|
is_shlib = so_regex.search(fname)
|
|
|
|
bin_info = BinaryInfo(pkg, pkgfile.path, fname, is_ar, is_shlib)
|
2008-06-25 19:08:32 +02:00
|
|
|
|
2010-10-14 14:32:03 +02:00
|
|
|
+ # stripped static library
|
|
|
|
+ if is_ar:
|
|
|
|
+ if bin_info.readelf_error:
|
|
|
|
+ pass
|
|
|
|
+ elif not bin_info.symtab:
|
|
|
|
+ printError(pkg, 'static-library-without-symtab', fname)
|
|
|
|
+ elif not bin_info.debuginfo and \
|
2011-04-21 12:12:02 +02:00
|
|
|
+ (os.environ.get('BUILD_DIR', '') == '' or \
|
|
|
|
+ os.environ.get('BUILD_DEBUG','') != ''):
|
2010-10-14 14:32:03 +02:00
|
|
|
+ printWarning(pkg, 'static-library-without-debuginfo', fname)
|
2008-06-25 19:08:32 +02:00
|
|
|
+
|
2010-10-14 14:32:03 +02:00
|
|
|
if is_shlib:
|
|
|
|
has_lib = True
|
2010-05-03 23:18:30 +02:00
|
|
|
|
2013-06-28 15:29:34 +02:00
|
|
|
@@ -386,6 +420,10 @@ class BinariesCheck(AbstractCheck.Abstra
|
2010-10-14 14:32:03 +02:00
|
|
|
for ec in bin_info.exit_calls:
|
|
|
|
printWarning(pkg, 'shared-lib-calls-exit', fname, ec)
|
|
|
|
|
2011-04-21 12:12:02 +02:00
|
|
|
+ # gethostbyname ?
|
2010-10-14 14:32:03 +02:00
|
|
|
+ if bin_info.calls_gethostbyname:
|
2011-04-21 12:12:02 +02:00
|
|
|
+ printInfo(pkg, 'binary-or-shlib-calls-gethostbyname', fname)
|
2010-05-03 23:18:30 +02:00
|
|
|
+
|
2010-10-14 14:32:03 +02:00
|
|
|
# rpath ?
|
|
|
|
if bin_info.rpath:
|
|
|
|
for p in bin_info.rpath:
|
2013-06-28 15:29:34 +02:00
|
|
|
@@ -590,6 +628,14 @@ with the intended shared libraries only.
|
2008-04-21 18:36:30 +02:00
|
|
|
'ldd-failed',
|
|
|
|
'''Executing ldd on this file failed, all checks could not be run.''',
|
2008-06-25 19:08:32 +02:00
|
|
|
|
2008-04-21 18:36:30 +02:00
|
|
|
+'static-library-without-symtab',
|
|
|
|
+'''The static library doesn't contain any symbols and therefore can't be linked
|
|
|
|
+against. This may indicated that it was strip.''',
|
|
|
|
+
|
|
|
|
+'static-library-without-debuginfo',
|
|
|
|
+'''The static library doesn't contain any debuginfo. Binaries linking against
|
|
|
|
+this static library can't be properly debugged.''',
|
2008-06-25 19:08:32 +02:00
|
|
|
+
|
|
|
|
'executable-stack',
|
|
|
|
'''The binary declares the stack as executable. Executable stack is usually an
|
|
|
|
error as it is only needed if the code contains GCC trampolines or similar
|
2013-06-28 15:29:34 +02:00
|
|
|
@@ -602,6 +648,10 @@ don\'t define a proper .note.GNU-stack s
|
2010-05-03 23:18:30 +02:00
|
|
|
make the stack executable. Usual suspects include use of a non-GNU linker or
|
|
|
|
an old GNU linker version.''',
|
|
|
|
|
|
|
|
+'binary-or-shlib-calls-gethostbyname',
|
|
|
|
+'''The binary calls gethostbyname(). Please port the code to use
|
|
|
|
+getaddrinfo().''',
|
|
|
|
+
|
|
|
|
'shared-lib-calls-exit',
|
|
|
|
'''This library package calls exit() or _exit(), probably in a non-fork()
|
|
|
|
context. Doing so from a library is strongly discouraged - when a library
|
2013-06-28 15:29:34 +02:00
|
|
|
@@ -620,6 +670,12 @@ that use prelink, make sure that prelink
|
2011-04-21 12:12:02 +02:00
|
|
|
placing a blacklist file in /etc/prelink.conf.d. For more information, see
|
|
|
|
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=256900#49''',
|
2011-08-12 18:08:36 +02:00
|
|
|
|
2011-04-21 12:12:02 +02:00
|
|
|
+'unstripped-binary-or-object',
|
|
|
|
+'''stripping debug info from binaries happens automatically according to global
|
|
|
|
+project settings. So there's normally no need to manually strip binaries.
|
|
|
|
+Left over unstripped binaries could therefore indicate a bug in the automatic
|
|
|
|
+stripping process.''',
|
2011-08-12 18:08:36 +02:00
|
|
|
+
|
|
|
|
'non-position-independent-executable',
|
|
|
|
'''This executable must be position independent. Check that it is built with
|
|
|
|
-fPIE/-fpie in compiler flags and -pie in linker flags.''',
|