eb53f8c69fac45cd034bc0bedd39386cd47f15c7
[kai/samba-autobuild/.git] / buildtools / wafsamba / samba_abi.py
1 # functions for handling ABI checking of libraries
2
3 import Options, Utils, os, Logs, samba_utils, sys, Task, fnmatch, re, Build
4 from TaskGen import feature, before, after
5
6 # these type maps cope with platform specific names for common types
7 # please add new type mappings into the list below
8 abi_type_maps = {
9     '_Bool' : 'bool',
10     'struct __va_list_tag *' : 'va_list'
11     }
12
13 version_key = lambda x: map(int, x.split("."))
14
15 def normalise_signature(sig):
16     '''normalise a signature from gdb'''
17     sig = sig.strip()
18     sig = re.sub('^\$[0-9]+\s=\s\{(.+)\}$', r'\1', sig)
19     sig = re.sub('^\$[0-9]+\s=\s\{(.+)\}(\s0x[0-9a-f]+\s<\w+>)+$', r'\1', sig)
20     sig = re.sub('^\$[0-9]+\s=\s(0x[0-9a-f]+)\s?(<\w+>)?$', r'\1', sig)
21     sig = re.sub('0x[0-9a-f]+', '0xXXXX', sig)
22     sig = re.sub('", <incomplete sequence (\\\\[a-z0-9]+)>', r'\1"', sig)
23
24     for t in abi_type_maps:
25         # we need to cope with non-word characters in mapped types
26         m = t
27         m = m.replace('*', '\*')
28         if m[-1].isalnum() or m[-1] == '_':
29             m += '\\b'
30         if m[0].isalnum() or m[0] == '_':
31             m = '\\b' + m
32         sig = re.sub(m, abi_type_maps[t], sig)
33     return sig
34
35
36 def normalise_varargs(sig):
37     '''cope with older versions of gdb'''
38     sig = re.sub(',\s\.\.\.', '', sig)
39     return sig
40
41
42 def parse_sigs(sigs, abi_match):
43     '''parse ABI signatures file'''
44     abi_match = samba_utils.TO_LIST(abi_match)
45     ret = {}
46     a = sigs.split('\n')
47     for s in a:
48         if s.find(':') == -1:
49             continue
50         sa = s.split(':')
51         if abi_match:
52             matched = False
53             for p in abi_match:
54                 if p[0] == '!' and fnmatch.fnmatch(sa[0], p[1:]):
55                     break
56                 elif fnmatch.fnmatch(sa[0], p):
57                     matched = True
58                     break
59             if not matched:
60                 continue
61         Logs.debug("%s -> %s" % (sa[1], normalise_signature(sa[1])))
62         ret[sa[0]] = normalise_signature(sa[1])
63     return ret
64
65 def save_sigs(sig_file, parsed_sigs):
66     '''save ABI signatures to a file'''
67     sigs = ''
68     for s in sorted(parsed_sigs.keys()):
69         sigs += '%s: %s\n' % (s, parsed_sigs[s])
70     return samba_utils.save_file(sig_file, sigs, create_dir=True)
71
72
73 def abi_check_task(self):
74     '''check if the ABI has changed'''
75     abi_gen = self.ABI_GEN
76
77     libpath = self.inputs[0].abspath(self.env)
78     libname = os.path.basename(libpath)
79
80     sigs = Utils.cmd_output([abi_gen, libpath])
81     parsed_sigs = parse_sigs(sigs, self.ABI_MATCH)
82
83     sig_file = self.ABI_FILE
84
85     old_sigs = samba_utils.load_file(sig_file)
86     if old_sigs is None or Options.options.ABI_UPDATE:
87         if not save_sigs(sig_file, parsed_sigs):
88             raise Utils.WafError('Failed to save ABI file "%s"' % sig_file)
89         Logs.warn('Generated ABI signatures %s' % sig_file)
90         return
91
92     parsed_old_sigs = parse_sigs(old_sigs, self.ABI_MATCH)
93
94     # check all old sigs
95     got_error = False
96     for s in parsed_old_sigs:
97         if not s in parsed_sigs:
98             Logs.error('%s: symbol %s has been removed - please update major version\n\tsignature: %s' % (
99                 libname, s, parsed_old_sigs[s]))
100             got_error = True
101         elif normalise_varargs(parsed_old_sigs[s]) != normalise_varargs(parsed_sigs[s]):
102             Logs.error('%s: symbol %s has changed - please update major version\n\told_signature: %s\n\tnew_signature: %s' % (
103                 libname, s, parsed_old_sigs[s], parsed_sigs[s]))
104             got_error = True
105
106     for s in parsed_sigs:
107         if not s in parsed_old_sigs:
108             Logs.error('%s: symbol %s has been added - please mark it _PRIVATE_ or update minor version\n\tsignature: %s' % (
109                 libname, s, parsed_sigs[s]))
110             got_error = True
111
112     if got_error:
113         raise Utils.WafError('ABI for %s has changed - please fix library version then build with --abi-update\nSee http://wiki.samba.org/index.php/Waf#ABI_Checking for more information\nIf you have not changed any ABI, and your platform always gives this error, please configure with --abi-check-disable to skip this check' % libname)
114
115
116 t = Task.task_type_from_func('abi_check', abi_check_task, color='BLUE', ext_in='.bin')
117 t.quiet = True
118 # allow "waf --abi-check" to force re-checking the ABI
119 if '--abi-check' in sys.argv:
120     Task.always_run(t)
121
122 @after('apply_link')
123 @feature('abi_check')
124 def abi_check(self):
125     '''check that ABI matches saved signatures'''
126     env = self.bld.env
127     if not env.ABI_CHECK or self.abi_directory is None:
128         return
129
130     # if the platform doesn't support -fvisibility=hidden then the ABI
131     # checks become fairly meaningless
132     if not env.HAVE_VISIBILITY_ATTR:
133         return
134
135     topsrc = self.bld.srcnode.abspath()
136     abi_gen = os.path.join(topsrc, 'buildtools/scripts/abi_gen.sh')
137
138     abi_file = "%s/%s-%s.sigs" % (self.abi_directory, self.name, self.vnum)
139
140     tsk = self.create_task('abi_check', self.link_task.outputs[0])
141     tsk.ABI_FILE = abi_file
142     tsk.ABI_MATCH = self.abi_match
143     tsk.ABI_GEN = abi_gen
144
145
146 def abi_process_file(fname, version, symmap):
147     '''process one ABI file, adding new symbols to the symmap'''
148     f = open(fname, mode='r')
149     for line in f:
150         symname = line.split(":")[0]
151         if not symname in symmap:
152             symmap[symname] = version
153     f.close()
154
155
156 def abi_write_vscript(f, libname, current_version, versions, symmap, abi_match):
157     """Write a vscript file for a library in --version-script format.
158
159     :param f: File-like object to write to
160     :param libname: Name of the library, uppercased
161     :param current_version: Current version
162     :param versions: Versions to consider
163     :param symmap: Dictionary mapping symbols -> version
164     :param abi_match: List of symbols considered to be public in the current
165         version
166     """
167
168     invmap = {}
169     for s in symmap:
170         invmap.setdefault(symmap[s], []).append(s)
171
172     last_key = ""
173     versions = sorted(versions, key=version_key)
174     for k in versions:
175         symver = "%s_%s" % (libname, k)
176         if symver == current_version:
177             break
178         f.write("%s {\n" % symver)
179         if k in invmap:
180             f.write("\tglobal:\n")
181             for s in invmap.get(k, []):
182                 f.write("\t\t%s;\n" % s);
183         f.write("}%s;\n\n" % last_key)
184         last_key = " %s" % symver
185     f.write("%s {\n" % current_version)
186     local_abi = filter(lambda x: x[0] == '!', abi_match)
187     global_abi = filter(lambda x: x[0] != '!', abi_match)
188     f.write("\tglobal:\n")
189     if len(global_abi) > 0:
190         for x in global_abi:
191             f.write("\t\t%s;\n" % x)
192     else:
193         f.write("\t\t*;\n")
194     if len(local_abi) > 0:
195         f.write("\tlocal:\n")
196         for x in local_abi:
197             f.write("\t\t%s;\n" % x[1:])
198     elif abi_match != ["*"]:
199         f.write("\tlocal: *;\n")
200     f.write("};\n")
201
202
203 def abi_build_vscript(task):
204     '''generate a vscript file for our public libraries'''
205
206     tgt = task.outputs[0].bldpath(task.env)
207
208     symmap = {}
209     versions = []
210     for f in task.inputs:
211         fname = f.abspath(task.env)
212         basename = os.path.basename(fname)
213         version = basename[len(task.env.LIBNAME)+1:-len(".sigs")]
214         versions.append(version)
215         abi_process_file(fname, version, symmap)
216     f = open(tgt, mode='w')
217     try:
218         abi_write_vscript(f, task.env.LIBNAME, task.env.VERSION, versions,
219             symmap, task.env.ABI_MATCH)
220     finally:
221         f.close()
222
223
224 def ABI_VSCRIPT(bld, libname, abi_directory, version, vscript, abi_match=None):
225     '''generate a vscript file for our public libraries'''
226     if abi_directory:
227         source = bld.path.ant_glob('%s/%s-[0-9]*.sigs' % (abi_directory, libname))
228         def abi_file_key(path):
229             return version_key(path[:-len(".sigs")].rsplit("-")[-1])
230         source = sorted(source.split(), key=abi_file_key)
231     else:
232         source = ''
233
234     libname = os.path.basename(libname)
235     version = os.path.basename(version)
236     libname = libname.replace("-", "_").replace("+","_").upper()
237     version = version.replace("-", "_").replace("+","_").upper()
238
239     t = bld.SAMBA_GENERATOR(vscript,
240                             rule=abi_build_vscript,
241                             source=source,
242                             group='vscripts',
243                             target=vscript)
244     if abi_match is None:
245         abi_match = ["*"]
246     else:
247         abi_match = samba_utils.TO_LIST(abi_match)
248     t.env.ABI_MATCH = abi_match
249     t.env.VERSION = version
250     t.env.LIBNAME = libname
251     t.vars = ['LIBNAME', 'VERSION', 'ABI_MATCH']
252 Build.BuildContext.ABI_VSCRIPT = ABI_VSCRIPT