forked from libvirt/libvirt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck-symfile.py
executable file
·78 lines (63 loc) · 2 KB
/
check-symfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/env python3
#
# Copyright (C) 2012-2019 Red Hat, Inc.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library. If not, see
# <http://www.gnu.org/licenses/>.
import re
import subprocess
import sys
if len(sys.argv) < 3:
print("syntax: %s SYMFILE ELFLIB(S)" % sys.argv[0], file=sys.stderr)
symfile = sys.argv[1]
elflibs = sys.argv[2:]
wantsyms = {}
gotsyms = {}
ret = 0
with open(symfile, "r") as fh:
for line in fh:
line = line.strip()
if "{" in line:
continue
if "}" in line:
continue
if line in ["global:", "local:"]:
continue
if line == "":
continue
if line[0] == '#':
continue
if "*" in line:
continue
line = line.strip(";")
if line in wantsyms:
print("Symbol %s is listed twice" % line, file=sys.stderr)
ret = 1
else:
wantsyms[line] = True
for elflib in elflibs:
nm = subprocess.Popen(["nm", elflib], shell=False,
stdout=subprocess.PIPE).stdout
for line in nm:
line = line.decode("utf-8")
symmatch = re.search(r'''^\S+\s(?:[TBD])\s(\S+)\s*$''', line)
if symmatch is None:
continue
gotsyms[symmatch.group(1)] = True
for sym in wantsyms.keys():
if sym in gotsyms:
continue
print("Expected symbol '%s' is not in ELF library" % sym, file=sys.stderr)
ret = 1
sys.exit(ret)