summaryrefslogtreecommitdiff
path: root/golden/dump_abi.py
blob: 1afeda040686b2d6113f9f51569ab97be85871eb (plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
#!/usr/bin/env python
#
# Copyright (C) 2017 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

import argparse
import importlib
import os
import subprocess
import sys


class ExternalModules(object):
    """This class imports modules dynamically and keeps them as attributes.

    Assume the user runs this script in the source directory. The VTS modules
    are outside the search path and thus have to be imported dynamically.

    Attribtues:
        ar_parser: The ar_parser module.
        elf_parser: The elf_parser module.
        vtable_parser: The vtable_parser module.
    """
    @classmethod
    def ImportParsers(cls, import_dir):
        """Imports elf_parser and vtable_parser.

        Args:
            import_dir: The directory containing vts.utils.python.library.*.
        """
        sys.path.append(import_dir)
        cls.ar_parser = importlib.import_module(
            "vts.utils.python.library.ar_parser")
        cls.elf_parser = importlib.import_module(
            "vts.utils.python.library.elf_parser")
        cls.vtable_parser = importlib.import_module(
            "vts.utils.python.library.vtable_parser")


def _CreateAndWrite(path, data):
    """Creates directories on a file path and writes data to it.

    Args:
        path: The path to the file.
        data: The data to write.
    """
    dir_name = os.path.dirname(path)
    if dir_name and not os.path.exists(dir_name):
        os.makedirs(dir_name)
    with open(path, "w") as f:
        f.write(data)


def _ExecuteCommand(cmd, **kwargs):
    """Executes a command and returns stdout.

    Args:
        cmd: A list of strings, the command to execute.
        **kwargs: The arguments passed to subprocess.Popen.

    Returns:
        A string, the stdout.
    """
    proc = subprocess.Popen(
        cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, **kwargs)
    stdout, stderr = proc.communicate()
    if proc.returncode:
        sys.exit("Command failed: %s\nstdout=%s\nstderr=%s" % (
                 cmd, stdout, stderr))
    if stderr:
        print("Warning: cmd=%s\nstdout=%s\nstderr=%s" % (cmd, stdout, stderr))
    return stdout.strip()


def GetBuildVariable(build_top_dir, var):
    """Gets value of a variable from build config.

    Args:
        build_top_dir: The path to root directory of Android source.
        var: The name of the variable.

    Returns:
        A string which is the value of the variable.
    """
    cmd = ["build/soong/soong_ui.bash", "--dumpvar-mode", var]
    return _ExecuteCommand(cmd, cwd=build_top_dir)


def FindBinary(file_name):
    """Finds an executable binary in environment variable PATH.

    Args:
        file_name: The file name to find.

    Returns:
        A string which is the path to the binary.
    """
    return _ExecuteCommand(["which", file_name])


def DumpSymbols(lib_path, dump_path, exclude_symbols):
    """Dump symbols from a library to a dump file.

    The dump file is a sorted list of symbols. Each line contains one symbol.

    Args:
        lib_path: The path to the library.
        dump_path: The path to the dump file.
        exclude_symbols: A set of strings, the symbols that should not be
                         written to the dump file.

    Returns:
        A list of strings which are the symbols written to the dump file.

    Raises:
        elf_parser.ElfError if fails to load the library.
        IOError if fails to write to the dump.
    """
    elf_parser = ExternalModules.elf_parser
    parser = None
    try:
        parser = elf_parser.ElfParser(lib_path)
        symbols = [x for x in parser.ListGlobalDynamicSymbols()
                   if x not in exclude_symbols]
    finally:
        if parser:
            parser.Close()
    if symbols:
        symbols.sort()
        _CreateAndWrite(dump_path, "\n".join(symbols) + "\n")
    return symbols


def DumpVtables(lib_path, dump_path, dumper_dir, include_symbols):
    """Dump vtables from a library to a dump file.

    The dump file is the raw output of vndk-vtable-dumper.

    Args:
        lib_path: The path to the library.
        dump_path: The path to the text file.
        dumper_dir: The path to the directory containing the dumper executable
                    and library.
        include_symbols: A set of strings. A vtable is written to the dump file
                         only if its symbol is in the set.

    Returns:
        A string which is the content written to the dump file.

    Raises:
        vtable_parser.VtableError if fails to load the library.
        IOError if fails to write to the dump.
    """
    vtable_parser = ExternalModules.vtable_parser
    parser = vtable_parser.VtableParser(dumper_dir)

    def GenerateLines():
        for line in parser.CallVtableDumper(lib_path).split("\n"):
            parsed_lines.append(line)
            yield line

    lines = GenerateLines()
    dump_lines = []
    try:
        while True:
            parsed_lines = []
            vtable, entries = parser.ParseOneVtable(lines)
            if vtable in include_symbols:
                dump_lines.extend(parsed_lines)
    except StopIteration:
        pass

    dump_string = "\n".join(dump_lines).strip("\n")
    if dump_string:
        dump_string += "\n"
        _CreateAndWrite(dump_path, dump_string)
    return dump_string


def GetSystemLibDirByArch(product_dir, arch_name):
    """Returns the directory containing libraries for specific architecture.

    Args:
        product_dir: The path to the product output directory in Android source.
        arch_name: The name of the CPU architecture.

    Returns:
        The path to the directory containing the libraries.
    """
    if arch_name in ("arm", "x86", "mips"):
        src_dir = os.path.join(product_dir, "system", "lib")
    elif arch_name in ("arm64", "x86_64", "mips64"):
        src_dir = os.path.join(product_dir, "system", "lib64")
    else:
        sys.exit("Unknown target arch " + str(target_arch))
    return src_dir


def _LoadLibraryNames(file_names):
    """Loads library names from files.

    Each element in the input list can be a .so file or a text file which
    contains list of library names. The returned list consists of the .so file
    names in the input list, and the non-empty lines in the text files.

    Args:
        file_names: A list of strings, the library or text file names.

    Returns:
        A list of strings, the library names.
    """
    lib_names = []
    for file_name in file_names:
        if file_name.endswith(".so"):
            lib_names.append(file_name)
        else:
            with open(file_name, "r") as lib_list:
                lib_names.extend(line.strip() for line in lib_list
                                 if line.strip())
    return lib_names


def DumpAbi(output_dir, lib_names, product_dir, object_dir, arch, dumper_dir):
    """Generates dump from libraries.

    Args:
        output_dir: The output directory of dump files.
        lib_names: The names of the libraries to dump.
        product_dir: The path to the product output directory in Android source.
        object_dir: The path to directory containing intermediate objects.
        arch: A string representing the CPU architecture of the libraries.
        dumper_dir: The path to the directory containing the vtable dumper
                    executable and library.
    """
    ar_parser = ExternalModules.ar_parser
    static_symbols = set()
    for ar_name in ("libgcc", "libatomic", "libcompiler_rt-extras"):
        ar_path = os.path.join(
            object_dir, "STATIC_LIBRARIES", ar_name + "_intermediates",
            ar_name + ".a")
        static_symbols.update(ar_parser.ListGlobalSymbols(ar_path))

    lib_dir = GetSystemLibDirByArch(product_dir, arch)
    dump_dir = os.path.join(output_dir, arch)
    for lib_name in lib_names:
        lib_path = os.path.join(lib_dir, lib_name)
        symbol_dump_path = os.path.join(dump_dir, lib_name + "_symbol.dump")
        vtable_dump_path = os.path.join(dump_dir, lib_name + "_vtable.dump")
        print(lib_path)
        symbols = DumpSymbols(lib_path, symbol_dump_path, static_symbols)
        if symbols:
            print("Output: " + symbol_dump_path)
        else:
            print("No symbols")
        vtables = DumpVtables(
            lib_path, vtable_dump_path, dumper_dir, set(symbols))
        if vtables:
            print("Output: " + vtable_dump_path)
        else:
            print("No vtables")
        print("")


def main():
    # Parse arguments
    arg_parser = argparse.ArgumentParser()
    arg_parser.add_argument("file", nargs="*",
                            help="the library to dump. Can be .so file or a"
                                 "text file containing list of libraries.")
    arg_parser.add_argument("--dumper-dir", "-d", action="store",
                            help="the path to the directory containing "
                                 "bin/vndk-vtable-dumper.")
    arg_parser.add_argument("--import-path", "-i", action="store",
                            help="the directory for VTS python modules. "
                                 "Default value is $ANDROID_BUILD_TOP/test")
    arg_parser.add_argument("--output", "-o", action="store", required=True,
                            help="output directory for ABI reference dump.")
    args = arg_parser.parse_args()

    # Get product directory
    product_dir = os.getenv("ANDROID_PRODUCT_OUT")
    if not product_dir:
        sys.exit("env var ANDROID_PRODUCT_OUT is not set")
    print("ANDROID_PRODUCT_OUT=" + product_dir)

    # Get target architectures
    build_top_dir = os.getenv("ANDROID_BUILD_TOP")
    if not build_top_dir:
        sys.exit("env var ANDROID_BUILD_TOP is not set")
    target_arch = GetBuildVariable(build_top_dir, "TARGET_ARCH")
    target_obj_dir = GetBuildVariable(build_top_dir, "TARGET_OUT_INTERMEDIATES")
    target_2nd_arch = GetBuildVariable(build_top_dir, "TARGET_2ND_ARCH")
    target_2nd_obj_dir = GetBuildVariable(build_top_dir,
                                          "2ND_TARGET_OUT_INTERMEDIATES")
    print("TARGET_ARCH=" + target_arch)
    print("TARGET_OUT_INTERMEDIATES=" + target_obj_dir)
    print("TARGET_2ND_ARCH=" + target_2nd_arch)
    print("2ND_TARGET_OUT_INTERMEDIATES=" + target_2nd_obj_dir)
    target_obj_dir = os.path.join(build_top_dir, target_obj_dir)
    target_2nd_obj_dir = os.path.join(build_top_dir, target_2nd_obj_dir)

    # Import elf_parser and vtable_parser
    ExternalModules.ImportParsers(args.import_path if args.import_path else
                                  os.path.join(build_top_dir, "test"))

    # Find vtable dumper
    if args.dumper_dir:
        dumper_dir = args.dumper_dir
    else:
        dumper_path = FindBinary(
            ExternalModules.vtable_parser.VtableParser.VNDK_VTABLE_DUMPER)
        dumper_dir = os.path.dirname(os.path.dirname(dumper_path))
    print("DUMPER_DIR=" + dumper_dir)

    lib_names = _LoadLibraryNames(args.file)
    DumpAbi(args.output, lib_names, product_dir, target_obj_dir, target_arch,
            dumper_dir)
    if target_2nd_arch:
        DumpAbi(args.output, lib_names, product_dir, target_2nd_obj_dir,
                target_2nd_arch, dumper_dir)


if __name__ == "__main__":
    main()