Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Darryl Green | 7869680 | 2018-04-06 11:23:22 +0100 | [diff] [blame] | 2 | """ |
Darryl Green | 7869680 | 2018-04-06 11:23:22 +0100 | [diff] [blame] | 3 | Purpose |
| 4 | |
| 5 | This script is a small wrapper around the abi-compliance-checker and |
| 6 | abi-dumper tools, applying them to compare the ABI and API of the library |
| 7 | files from two different Git revisions within an Mbed TLS repository. |
Darryl Green | e62f9bb | 2019-02-21 13:09:26 +0000 | [diff] [blame] | 8 | The results of the comparison are either formatted as HTML and stored at |
Darryl Green | 4cde8a0 | 2019-03-05 15:21:32 +0000 | [diff] [blame] | 9 | a configurable location, or are given as a brief list of problems. |
Darryl Green | e62f9bb | 2019-02-21 13:09:26 +0000 | [diff] [blame] | 10 | Returns 0 on success, 1 on ABI/API non-compliance, and 2 if there is an error |
| 11 | while running the script. Note: must be run from Mbed TLS root. |
Darryl Green | 7869680 | 2018-04-06 11:23:22 +0100 | [diff] [blame] | 12 | """ |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 13 | |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 14 | # Copyright The Mbed TLS Contributors |
Bence Szépkúti | c7da1fe | 2020-05-26 01:54:15 +0200 | [diff] [blame] | 15 | # SPDX-License-Identifier: Apache-2.0 |
| 16 | # |
| 17 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 18 | # not use this file except in compliance with the License. |
| 19 | # You may obtain a copy of the License at |
| 20 | # |
| 21 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 22 | # |
| 23 | # Unless required by applicable law or agreed to in writing, software |
| 24 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 25 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 26 | # See the License for the specific language governing permissions and |
| 27 | # limitations under the License. |
Bence Szépkúti | c7da1fe | 2020-05-26 01:54:15 +0200 | [diff] [blame] | 28 | |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 29 | import os |
| 30 | import sys |
| 31 | import traceback |
| 32 | import shutil |
| 33 | import subprocess |
| 34 | import argparse |
| 35 | import logging |
| 36 | import tempfile |
Darryl Green | 9f357d6 | 2019-02-25 11:35:05 +0000 | [diff] [blame] | 37 | import fnmatch |
Darryl Green | 0d1ca51 | 2019-04-09 09:14:17 +0100 | [diff] [blame] | 38 | from types import SimpleNamespace |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 39 | |
Darryl Green | e62f9bb | 2019-02-21 13:09:26 +0000 | [diff] [blame] | 40 | import xml.etree.ElementTree as ET |
| 41 | |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 42 | |
Gilles Peskine | 184c096 | 2020-03-24 18:25:17 +0100 | [diff] [blame] | 43 | class AbiChecker: |
Gilles Peskine | 712afa7 | 2019-02-25 20:36:52 +0100 | [diff] [blame] | 44 | """API and ABI checker.""" |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 45 | |
Darryl Green | 0d1ca51 | 2019-04-09 09:14:17 +0100 | [diff] [blame] | 46 | def __init__(self, old_version, new_version, configuration): |
Gilles Peskine | 712afa7 | 2019-02-25 20:36:52 +0100 | [diff] [blame] | 47 | """Instantiate the API/ABI checker. |
| 48 | |
Darryl Green | 7c1a733 | 2019-03-05 16:25:38 +0000 | [diff] [blame] | 49 | old_version: RepoVersion containing details to compare against |
| 50 | new_version: RepoVersion containing details to check |
Darryl Green | f67e349 | 2019-04-12 15:17:02 +0100 | [diff] [blame] | 51 | configuration.report_dir: directory for output files |
| 52 | configuration.keep_all_reports: if false, delete old reports |
| 53 | configuration.brief: if true, output shorter report to stdout |
Gilles Peskine | 793778f | 2021-04-23 16:32:32 +0200 | [diff] [blame^] | 54 | configuration.check_api: if true, compare ABIs |
| 55 | configuration.check_api: if true, compare APIs |
Darryl Green | f67e349 | 2019-04-12 15:17:02 +0100 | [diff] [blame] | 56 | configuration.skip_file: path to file containing symbols and types to skip |
Gilles Peskine | 712afa7 | 2019-02-25 20:36:52 +0100 | [diff] [blame] | 57 | """ |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 58 | self.repo_path = "." |
| 59 | self.log = None |
Darryl Green | 0d1ca51 | 2019-04-09 09:14:17 +0100 | [diff] [blame] | 60 | self.verbose = configuration.verbose |
Darryl Green | 3a5f6c8 | 2019-03-05 16:30:39 +0000 | [diff] [blame] | 61 | self._setup_logger() |
Darryl Green | 0d1ca51 | 2019-04-09 09:14:17 +0100 | [diff] [blame] | 62 | self.report_dir = os.path.abspath(configuration.report_dir) |
| 63 | self.keep_all_reports = configuration.keep_all_reports |
Darryl Green | 492bc40 | 2019-04-11 15:50:41 +0100 | [diff] [blame] | 64 | self.can_remove_report_dir = not (os.path.exists(self.report_dir) or |
Darryl Green | 0d1ca51 | 2019-04-09 09:14:17 +0100 | [diff] [blame] | 65 | self.keep_all_reports) |
Darryl Green | 7c1a733 | 2019-03-05 16:25:38 +0000 | [diff] [blame] | 66 | self.old_version = old_version |
| 67 | self.new_version = new_version |
Darryl Green | 0d1ca51 | 2019-04-09 09:14:17 +0100 | [diff] [blame] | 68 | self.skip_file = configuration.skip_file |
Gilles Peskine | 793778f | 2021-04-23 16:32:32 +0200 | [diff] [blame^] | 69 | self.check_abi = configuration.check_abi |
| 70 | self.check_api = configuration.check_api |
| 71 | if self.check_abi != self.check_api: |
| 72 | raise Exception('Checking API without ABI or vice versa is not supported') |
Darryl Green | 0d1ca51 | 2019-04-09 09:14:17 +0100 | [diff] [blame] | 73 | self.brief = configuration.brief |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 74 | self.git_command = "git" |
| 75 | self.make_command = "make" |
| 76 | |
Gilles Peskine | 712afa7 | 2019-02-25 20:36:52 +0100 | [diff] [blame] | 77 | @staticmethod |
| 78 | def check_repo_path(): |
Gilles Peskine | 6aa32cc | 2019-07-04 18:59:36 +0200 | [diff] [blame] | 79 | if not all(os.path.isdir(d) for d in ["include", "library", "tests"]): |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 80 | raise Exception("Must be run from Mbed TLS root") |
| 81 | |
Darryl Green | 3a5f6c8 | 2019-03-05 16:30:39 +0000 | [diff] [blame] | 82 | def _setup_logger(self): |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 83 | self.log = logging.getLogger() |
Darryl Green | 3c3da79 | 2019-03-08 11:30:04 +0000 | [diff] [blame] | 84 | if self.verbose: |
| 85 | self.log.setLevel(logging.DEBUG) |
| 86 | else: |
| 87 | self.log.setLevel(logging.INFO) |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 88 | self.log.addHandler(logging.StreamHandler()) |
| 89 | |
Gilles Peskine | 712afa7 | 2019-02-25 20:36:52 +0100 | [diff] [blame] | 90 | @staticmethod |
| 91 | def check_abi_tools_are_installed(): |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 92 | for command in ["abi-dumper", "abi-compliance-checker"]: |
| 93 | if not shutil.which(command): |
| 94 | raise Exception("{} not installed, aborting".format(command)) |
| 95 | |
Darryl Green | 3a5f6c8 | 2019-03-05 16:30:39 +0000 | [diff] [blame] | 96 | def _get_clean_worktree_for_git_revision(self, version): |
Darryl Green | 7c1a733 | 2019-03-05 16:25:38 +0000 | [diff] [blame] | 97 | """Make a separate worktree with version.revision checked out. |
Gilles Peskine | 712afa7 | 2019-02-25 20:36:52 +0100 | [diff] [blame] | 98 | Do not modify the current worktree.""" |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 99 | git_worktree_path = tempfile.mkdtemp() |
Darryl Green | 7c1a733 | 2019-03-05 16:25:38 +0000 | [diff] [blame] | 100 | if version.repository: |
Darryl Green | 3c3da79 | 2019-03-08 11:30:04 +0000 | [diff] [blame] | 101 | self.log.debug( |
Darryl Green | da84e32 | 2019-02-19 16:59:33 +0000 | [diff] [blame] | 102 | "Checking out git worktree for revision {} from {}".format( |
Darryl Green | 7c1a733 | 2019-03-05 16:25:38 +0000 | [diff] [blame] | 103 | version.revision, version.repository |
Darryl Green | da84e32 | 2019-02-19 16:59:33 +0000 | [diff] [blame] | 104 | ) |
| 105 | ) |
Darryl Green | b2ee0b8 | 2019-04-12 16:24:25 +0100 | [diff] [blame] | 106 | fetch_output = subprocess.check_output( |
Darryl Green | 7c1a733 | 2019-03-05 16:25:38 +0000 | [diff] [blame] | 107 | [self.git_command, "fetch", |
| 108 | version.repository, version.revision], |
Darryl Green | da84e32 | 2019-02-19 16:59:33 +0000 | [diff] [blame] | 109 | cwd=self.repo_path, |
Darryl Green | da84e32 | 2019-02-19 16:59:33 +0000 | [diff] [blame] | 110 | stderr=subprocess.STDOUT |
| 111 | ) |
Darryl Green | 3c3da79 | 2019-03-08 11:30:04 +0000 | [diff] [blame] | 112 | self.log.debug(fetch_output.decode("utf-8")) |
Darryl Green | da84e32 | 2019-02-19 16:59:33 +0000 | [diff] [blame] | 113 | worktree_rev = "FETCH_HEAD" |
| 114 | else: |
Darryl Green | 3c3da79 | 2019-03-08 11:30:04 +0000 | [diff] [blame] | 115 | self.log.debug("Checking out git worktree for revision {}".format( |
Darryl Green | 7c1a733 | 2019-03-05 16:25:38 +0000 | [diff] [blame] | 116 | version.revision |
| 117 | )) |
| 118 | worktree_rev = version.revision |
Darryl Green | b2ee0b8 | 2019-04-12 16:24:25 +0100 | [diff] [blame] | 119 | worktree_output = subprocess.check_output( |
Darryl Green | da84e32 | 2019-02-19 16:59:33 +0000 | [diff] [blame] | 120 | [self.git_command, "worktree", "add", "--detach", |
| 121 | git_worktree_path, worktree_rev], |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 122 | cwd=self.repo_path, |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 123 | stderr=subprocess.STDOUT |
| 124 | ) |
Darryl Green | 3c3da79 | 2019-03-08 11:30:04 +0000 | [diff] [blame] | 125 | self.log.debug(worktree_output.decode("utf-8")) |
Gilles Peskine | 3e2da4a | 2019-07-04 19:01:22 +0200 | [diff] [blame] | 126 | version.commit = subprocess.check_output( |
Darryl Green | 762351b | 2019-07-25 14:33:33 +0100 | [diff] [blame] | 127 | [self.git_command, "rev-parse", "HEAD"], |
Gilles Peskine | 3e2da4a | 2019-07-04 19:01:22 +0200 | [diff] [blame] | 128 | cwd=git_worktree_path, |
| 129 | stderr=subprocess.STDOUT |
| 130 | ).decode("ascii").rstrip() |
| 131 | self.log.debug("Commit is {}".format(version.commit)) |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 132 | return git_worktree_path |
| 133 | |
Darryl Green | 3a5f6c8 | 2019-03-05 16:30:39 +0000 | [diff] [blame] | 134 | def _update_git_submodules(self, git_worktree_path, version): |
Darryl Green | 8184df5 | 2019-04-05 17:06:17 +0100 | [diff] [blame] | 135 | """If the crypto submodule is present, initialize it. |
| 136 | if version.crypto_revision exists, update it to that revision, |
| 137 | otherwise update it to the default revision""" |
Darryl Green | b2ee0b8 | 2019-04-12 16:24:25 +0100 | [diff] [blame] | 138 | update_output = subprocess.check_output( |
Jaeden Amero | ffeb1b8 | 2018-11-02 16:35:09 +0000 | [diff] [blame] | 139 | [self.git_command, "submodule", "update", "--init", '--recursive'], |
| 140 | cwd=git_worktree_path, |
Jaeden Amero | ffeb1b8 | 2018-11-02 16:35:09 +0000 | [diff] [blame] | 141 | stderr=subprocess.STDOUT |
| 142 | ) |
Darryl Green | b2ee0b8 | 2019-04-12 16:24:25 +0100 | [diff] [blame] | 143 | self.log.debug(update_output.decode("utf-8")) |
Darryl Green | e29ce70 | 2019-03-05 15:23:25 +0000 | [diff] [blame] | 144 | if not (os.path.exists(os.path.join(git_worktree_path, "crypto")) |
Darryl Green | 7c1a733 | 2019-03-05 16:25:38 +0000 | [diff] [blame] | 145 | and version.crypto_revision): |
Darryl Green | e29ce70 | 2019-03-05 15:23:25 +0000 | [diff] [blame] | 146 | return |
| 147 | |
Darryl Green | 7c1a733 | 2019-03-05 16:25:38 +0000 | [diff] [blame] | 148 | if version.crypto_repository: |
Darryl Green | b2ee0b8 | 2019-04-12 16:24:25 +0100 | [diff] [blame] | 149 | fetch_output = subprocess.check_output( |
Darryl Green | 1d95c53 | 2019-03-08 11:12:19 +0000 | [diff] [blame] | 150 | [self.git_command, "fetch", version.crypto_repository, |
| 151 | version.crypto_revision], |
Darryl Green | e29ce70 | 2019-03-05 15:23:25 +0000 | [diff] [blame] | 152 | cwd=os.path.join(git_worktree_path, "crypto"), |
Darryl Green | e29ce70 | 2019-03-05 15:23:25 +0000 | [diff] [blame] | 153 | stderr=subprocess.STDOUT |
| 154 | ) |
Darryl Green | 3c3da79 | 2019-03-08 11:30:04 +0000 | [diff] [blame] | 155 | self.log.debug(fetch_output.decode("utf-8")) |
Darryl Green | 1d95c53 | 2019-03-08 11:12:19 +0000 | [diff] [blame] | 156 | crypto_rev = "FETCH_HEAD" |
| 157 | else: |
| 158 | crypto_rev = version.crypto_revision |
| 159 | |
Darryl Green | b2ee0b8 | 2019-04-12 16:24:25 +0100 | [diff] [blame] | 160 | checkout_output = subprocess.check_output( |
Darryl Green | 1d95c53 | 2019-03-08 11:12:19 +0000 | [diff] [blame] | 161 | [self.git_command, "checkout", crypto_rev], |
| 162 | cwd=os.path.join(git_worktree_path, "crypto"), |
Darryl Green | 1d95c53 | 2019-03-08 11:12:19 +0000 | [diff] [blame] | 163 | stderr=subprocess.STDOUT |
| 164 | ) |
Darryl Green | 3c3da79 | 2019-03-08 11:30:04 +0000 | [diff] [blame] | 165 | self.log.debug(checkout_output.decode("utf-8")) |
Jaeden Amero | ffeb1b8 | 2018-11-02 16:35:09 +0000 | [diff] [blame] | 166 | |
Darryl Green | 3a5f6c8 | 2019-03-05 16:30:39 +0000 | [diff] [blame] | 167 | def _build_shared_libraries(self, git_worktree_path, version): |
Gilles Peskine | 712afa7 | 2019-02-25 20:36:52 +0100 | [diff] [blame] | 168 | """Build the shared libraries in the specified worktree.""" |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 169 | my_environment = os.environ.copy() |
| 170 | my_environment["CFLAGS"] = "-g -Og" |
| 171 | my_environment["SHARED"] = "1" |
Darryl Green | d2dba36 | 2019-05-09 13:03:05 +0100 | [diff] [blame] | 172 | if os.path.exists(os.path.join(git_worktree_path, "crypto")): |
| 173 | my_environment["USE_CRYPTO_SUBMODULE"] = "1" |
Darryl Green | b2ee0b8 | 2019-04-12 16:24:25 +0100 | [diff] [blame] | 174 | make_output = subprocess.check_output( |
Darryl Green | ddf25a6 | 2019-02-28 11:52:39 +0000 | [diff] [blame] | 175 | [self.make_command, "lib"], |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 176 | env=my_environment, |
| 177 | cwd=git_worktree_path, |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 178 | stderr=subprocess.STDOUT |
| 179 | ) |
Darryl Green | 3c3da79 | 2019-03-08 11:30:04 +0000 | [diff] [blame] | 180 | self.log.debug(make_output.decode("utf-8")) |
Darryl Green | f025d53 | 2019-04-12 15:18:02 +0100 | [diff] [blame] | 181 | for root, _dirs, files in os.walk(git_worktree_path): |
Darryl Green | 9f357d6 | 2019-02-25 11:35:05 +0000 | [diff] [blame] | 182 | for file in fnmatch.filter(files, "*.so"): |
Darryl Green | 7c1a733 | 2019-03-05 16:25:38 +0000 | [diff] [blame] | 183 | version.modules[os.path.splitext(file)[0]] = ( |
Darryl Green | 3e7a980 | 2019-02-27 16:53:40 +0000 | [diff] [blame] | 184 | os.path.join(root, file) |
Darryl Green | 9f357d6 | 2019-02-25 11:35:05 +0000 | [diff] [blame] | 185 | ) |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 186 | |
Gilles Peskine | 3e2da4a | 2019-07-04 19:01:22 +0200 | [diff] [blame] | 187 | @staticmethod |
| 188 | def _pretty_revision(version): |
| 189 | if version.revision == version.commit: |
| 190 | return version.revision |
| 191 | else: |
| 192 | return "{} ({})".format(version.revision, version.commit) |
| 193 | |
Darryl Green | 8184df5 | 2019-04-05 17:06:17 +0100 | [diff] [blame] | 194 | def _get_abi_dumps_from_shared_libraries(self, version): |
Gilles Peskine | 712afa7 | 2019-02-25 20:36:52 +0100 | [diff] [blame] | 195 | """Generate the ABI dumps for the specified git revision. |
Darryl Green | 8184df5 | 2019-04-05 17:06:17 +0100 | [diff] [blame] | 196 | The shared libraries must have been built and the module paths |
| 197 | present in version.modules.""" |
Darryl Green | 7c1a733 | 2019-03-05 16:25:38 +0000 | [diff] [blame] | 198 | for mbed_module, module_path in version.modules.items(): |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 199 | output_path = os.path.join( |
Darryl Green | fe9a675 | 2019-04-04 14:39:33 +0100 | [diff] [blame] | 200 | self.report_dir, "{}-{}-{}.dump".format( |
| 201 | mbed_module, version.revision, version.version |
Darryl Green | 3e7a980 | 2019-02-27 16:53:40 +0000 | [diff] [blame] | 202 | ) |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 203 | ) |
| 204 | abi_dump_command = [ |
| 205 | "abi-dumper", |
Darryl Green | 9f357d6 | 2019-02-25 11:35:05 +0000 | [diff] [blame] | 206 | module_path, |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 207 | "-o", output_path, |
Gilles Peskine | 3e2da4a | 2019-07-04 19:01:22 +0200 | [diff] [blame] | 208 | "-lver", self._pretty_revision(version), |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 209 | ] |
Darryl Green | b2ee0b8 | 2019-04-12 16:24:25 +0100 | [diff] [blame] | 210 | abi_dump_output = subprocess.check_output( |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 211 | abi_dump_command, |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 212 | stderr=subprocess.STDOUT |
| 213 | ) |
Darryl Green | 3c3da79 | 2019-03-08 11:30:04 +0000 | [diff] [blame] | 214 | self.log.debug(abi_dump_output.decode("utf-8")) |
Darryl Green | 7c1a733 | 2019-03-05 16:25:38 +0000 | [diff] [blame] | 215 | version.abi_dumps[mbed_module] = output_path |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 216 | |
Darryl Green | 3a5f6c8 | 2019-03-05 16:30:39 +0000 | [diff] [blame] | 217 | def _cleanup_worktree(self, git_worktree_path): |
Gilles Peskine | 712afa7 | 2019-02-25 20:36:52 +0100 | [diff] [blame] | 218 | """Remove the specified git worktree.""" |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 219 | shutil.rmtree(git_worktree_path) |
Darryl Green | b2ee0b8 | 2019-04-12 16:24:25 +0100 | [diff] [blame] | 220 | worktree_output = subprocess.check_output( |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 221 | [self.git_command, "worktree", "prune"], |
| 222 | cwd=self.repo_path, |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 223 | stderr=subprocess.STDOUT |
| 224 | ) |
Darryl Green | 3c3da79 | 2019-03-08 11:30:04 +0000 | [diff] [blame] | 225 | self.log.debug(worktree_output.decode("utf-8")) |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 226 | |
Darryl Green | 3a5f6c8 | 2019-03-05 16:30:39 +0000 | [diff] [blame] | 227 | def _get_abi_dump_for_ref(self, version): |
Gilles Peskine | 712afa7 | 2019-02-25 20:36:52 +0100 | [diff] [blame] | 228 | """Generate the ABI dumps for the specified git revision.""" |
Darryl Green | 3a5f6c8 | 2019-03-05 16:30:39 +0000 | [diff] [blame] | 229 | git_worktree_path = self._get_clean_worktree_for_git_revision(version) |
| 230 | self._update_git_submodules(git_worktree_path, version) |
Gilles Peskine | 793778f | 2021-04-23 16:32:32 +0200 | [diff] [blame^] | 231 | if self.check_abi: |
| 232 | self._build_shared_libraries(git_worktree_path, version) |
| 233 | self._get_abi_dumps_from_shared_libraries(version) |
Darryl Green | 3a5f6c8 | 2019-03-05 16:30:39 +0000 | [diff] [blame] | 234 | self._cleanup_worktree(git_worktree_path) |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 235 | |
Darryl Green | 3a5f6c8 | 2019-03-05 16:30:39 +0000 | [diff] [blame] | 236 | def _remove_children_with_tag(self, parent, tag): |
Darryl Green | e62f9bb | 2019-02-21 13:09:26 +0000 | [diff] [blame] | 237 | children = parent.getchildren() |
| 238 | for child in children: |
| 239 | if child.tag == tag: |
| 240 | parent.remove(child) |
| 241 | else: |
Darryl Green | 3a5f6c8 | 2019-03-05 16:30:39 +0000 | [diff] [blame] | 242 | self._remove_children_with_tag(child, tag) |
Darryl Green | e62f9bb | 2019-02-21 13:09:26 +0000 | [diff] [blame] | 243 | |
Darryl Green | 3a5f6c8 | 2019-03-05 16:30:39 +0000 | [diff] [blame] | 244 | def _remove_extra_detail_from_report(self, report_root): |
Darryl Green | e62f9bb | 2019-02-21 13:09:26 +0000 | [diff] [blame] | 245 | for tag in ['test_info', 'test_results', 'problem_summary', |
Darryl Green | c6f874b | 2019-06-05 12:57:50 +0100 | [diff] [blame] | 246 | 'added_symbols', 'affected']: |
Darryl Green | 3a5f6c8 | 2019-03-05 16:30:39 +0000 | [diff] [blame] | 247 | self._remove_children_with_tag(report_root, tag) |
Darryl Green | e62f9bb | 2019-02-21 13:09:26 +0000 | [diff] [blame] | 248 | |
| 249 | for report in report_root: |
| 250 | for problems in report.getchildren()[:]: |
| 251 | if not problems.getchildren(): |
| 252 | report.remove(problems) |
| 253 | |
Gilles Peskine | ada828f | 2019-07-04 19:17:40 +0200 | [diff] [blame] | 254 | def _abi_compliance_command(self, mbed_module, output_path): |
| 255 | """Build the command to run to analyze the library mbed_module. |
| 256 | The report will be placed in output_path.""" |
| 257 | abi_compliance_command = [ |
| 258 | "abi-compliance-checker", |
| 259 | "-l", mbed_module, |
| 260 | "-old", self.old_version.abi_dumps[mbed_module], |
| 261 | "-new", self.new_version.abi_dumps[mbed_module], |
| 262 | "-strict", |
| 263 | "-report-path", output_path, |
| 264 | ] |
| 265 | if self.skip_file: |
| 266 | abi_compliance_command += ["-skip-symbols", self.skip_file, |
| 267 | "-skip-types", self.skip_file] |
| 268 | if self.brief: |
| 269 | abi_compliance_command += ["-report-format", "xml", |
| 270 | "-stdout"] |
| 271 | return abi_compliance_command |
| 272 | |
| 273 | def _is_library_compatible(self, mbed_module, compatibility_report): |
| 274 | """Test if the library mbed_module has remained compatible. |
| 275 | Append a message regarding compatibility to compatibility_report.""" |
| 276 | output_path = os.path.join( |
| 277 | self.report_dir, "{}-{}-{}.html".format( |
| 278 | mbed_module, self.old_version.revision, |
| 279 | self.new_version.revision |
| 280 | ) |
| 281 | ) |
| 282 | try: |
| 283 | subprocess.check_output( |
| 284 | self._abi_compliance_command(mbed_module, output_path), |
| 285 | stderr=subprocess.STDOUT |
| 286 | ) |
| 287 | except subprocess.CalledProcessError as err: |
| 288 | if err.returncode != 1: |
| 289 | raise err |
| 290 | if self.brief: |
| 291 | self.log.info( |
| 292 | "Compatibility issues found for {}".format(mbed_module) |
| 293 | ) |
| 294 | report_root = ET.fromstring(err.output.decode("utf-8")) |
| 295 | self._remove_extra_detail_from_report(report_root) |
| 296 | self.log.info(ET.tostring(report_root).decode("utf-8")) |
| 297 | else: |
| 298 | self.can_remove_report_dir = False |
| 299 | compatibility_report.append( |
| 300 | "Compatibility issues found for {}, " |
| 301 | "for details see {}".format(mbed_module, output_path) |
| 302 | ) |
| 303 | return False |
| 304 | compatibility_report.append( |
| 305 | "No compatibility issues for {}".format(mbed_module) |
| 306 | ) |
| 307 | if not (self.keep_all_reports or self.brief): |
| 308 | os.remove(output_path) |
| 309 | return True |
| 310 | |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 311 | def get_abi_compatibility_report(self): |
Gilles Peskine | 712afa7 | 2019-02-25 20:36:52 +0100 | [diff] [blame] | 312 | """Generate a report of the differences between the reference ABI |
Darryl Green | 8184df5 | 2019-04-05 17:06:17 +0100 | [diff] [blame] | 313 | and the new ABI. ABI dumps from self.old_version and self.new_version |
| 314 | must be available.""" |
Gilles Peskine | ada828f | 2019-07-04 19:17:40 +0200 | [diff] [blame] | 315 | compatibility_report = ["Checking evolution from {} to {}".format( |
Gilles Peskine | 3e2da4a | 2019-07-04 19:01:22 +0200 | [diff] [blame] | 316 | self._pretty_revision(self.old_version), |
| 317 | self._pretty_revision(self.new_version) |
Gilles Peskine | ada828f | 2019-07-04 19:17:40 +0200 | [diff] [blame] | 318 | )] |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 319 | compliance_return_code = 0 |
Gilles Peskine | 793778f | 2021-04-23 16:32:32 +0200 | [diff] [blame^] | 320 | if self.check_abi: |
| 321 | shared_modules = list(set(self.old_version.modules.keys()) & |
| 322 | set(self.new_version.modules.keys())) |
| 323 | for mbed_module in shared_modules: |
| 324 | if not self._is_library_compatible(mbed_module, |
| 325 | compatibility_report): |
| 326 | compliance_return_code = 1 |
| 327 | |
Gilles Peskine | ada828f | 2019-07-04 19:17:40 +0200 | [diff] [blame] | 328 | compliance_return_code = 1 |
Darryl Green | f2688e2 | 2019-05-29 11:29:08 +0100 | [diff] [blame] | 329 | for version in [self.old_version, self.new_version]: |
| 330 | for mbed_module, mbed_module_dump in version.abi_dumps.items(): |
| 331 | os.remove(mbed_module_dump) |
Darryl Green | 3d3d552 | 2019-02-25 17:01:55 +0000 | [diff] [blame] | 332 | if self.can_remove_report_dir: |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 333 | os.rmdir(self.report_dir) |
Gilles Peskine | ada828f | 2019-07-04 19:17:40 +0200 | [diff] [blame] | 334 | self.log.info("\n".join(compatibility_report)) |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 335 | return compliance_return_code |
| 336 | |
| 337 | def check_for_abi_changes(self): |
Gilles Peskine | 712afa7 | 2019-02-25 20:36:52 +0100 | [diff] [blame] | 338 | """Generate a report of ABI differences |
| 339 | between self.old_rev and self.new_rev.""" |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 340 | self.check_repo_path() |
| 341 | self.check_abi_tools_are_installed() |
Darryl Green | 3a5f6c8 | 2019-03-05 16:30:39 +0000 | [diff] [blame] | 342 | self._get_abi_dump_for_ref(self.old_version) |
| 343 | self._get_abi_dump_for_ref(self.new_version) |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 344 | return self.get_abi_compatibility_report() |
| 345 | |
| 346 | |
| 347 | def run_main(): |
| 348 | try: |
| 349 | parser = argparse.ArgumentParser( |
| 350 | description=( |
Darryl Green | 418527b | 2018-04-16 12:02:29 +0100 | [diff] [blame] | 351 | """This script is a small wrapper around the |
| 352 | abi-compliance-checker and abi-dumper tools, applying them |
| 353 | to compare the ABI and API of the library files from two |
| 354 | different Git revisions within an Mbed TLS repository. |
Darryl Green | e62f9bb | 2019-02-21 13:09:26 +0000 | [diff] [blame] | 355 | The results of the comparison are either formatted as HTML and |
Darryl Green | 4cde8a0 | 2019-03-05 15:21:32 +0000 | [diff] [blame] | 356 | stored at a configurable location, or are given as a brief list |
| 357 | of problems. Returns 0 on success, 1 on ABI/API non-compliance, |
| 358 | and 2 if there is an error while running the script. |
| 359 | Note: must be run from Mbed TLS root.""" |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 360 | ) |
| 361 | ) |
| 362 | parser.add_argument( |
Darryl Green | 3c3da79 | 2019-03-08 11:30:04 +0000 | [diff] [blame] | 363 | "-v", "--verbose", action="store_true", |
| 364 | help="set verbosity level", |
| 365 | ) |
| 366 | parser.add_argument( |
Darryl Green | 418527b | 2018-04-16 12:02:29 +0100 | [diff] [blame] | 367 | "-r", "--report-dir", type=str, default="reports", |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 368 | help="directory where reports are stored, default is reports", |
| 369 | ) |
| 370 | parser.add_argument( |
Darryl Green | 418527b | 2018-04-16 12:02:29 +0100 | [diff] [blame] | 371 | "-k", "--keep-all-reports", action="store_true", |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 372 | help="keep all reports, even if there are no compatibility issues", |
| 373 | ) |
| 374 | parser.add_argument( |
Darryl Green | c5132ff | 2019-03-01 09:54:44 +0000 | [diff] [blame] | 375 | "-o", "--old-rev", type=str, help="revision for old version.", |
| 376 | required=True, |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 377 | ) |
| 378 | parser.add_argument( |
Darryl Green | c5132ff | 2019-03-01 09:54:44 +0000 | [diff] [blame] | 379 | "-or", "--old-repo", type=str, help="repository for old version." |
Darryl Green | 9f357d6 | 2019-02-25 11:35:05 +0000 | [diff] [blame] | 380 | ) |
| 381 | parser.add_argument( |
Darryl Green | c5132ff | 2019-03-01 09:54:44 +0000 | [diff] [blame] | 382 | "-oc", "--old-crypto-rev", type=str, |
| 383 | help="revision for old crypto submodule." |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 384 | ) |
Darryl Green | c2883a2 | 2019-02-20 15:01:56 +0000 | [diff] [blame] | 385 | parser.add_argument( |
Darryl Green | c5132ff | 2019-03-01 09:54:44 +0000 | [diff] [blame] | 386 | "-ocr", "--old-crypto-repo", type=str, |
| 387 | help="repository for old crypto submodule." |
| 388 | ) |
| 389 | parser.add_argument( |
| 390 | "-n", "--new-rev", type=str, help="revision for new version", |
| 391 | required=True, |
| 392 | ) |
| 393 | parser.add_argument( |
| 394 | "-nr", "--new-repo", type=str, help="repository for new version." |
| 395 | ) |
| 396 | parser.add_argument( |
| 397 | "-nc", "--new-crypto-rev", type=str, |
| 398 | help="revision for new crypto version" |
| 399 | ) |
| 400 | parser.add_argument( |
| 401 | "-ncr", "--new-crypto-repo", type=str, |
| 402 | help="repository for new crypto submodule." |
Darryl Green | 9f357d6 | 2019-02-25 11:35:05 +0000 | [diff] [blame] | 403 | ) |
| 404 | parser.add_argument( |
Darryl Green | c2883a2 | 2019-02-20 15:01:56 +0000 | [diff] [blame] | 405 | "-s", "--skip-file", type=str, |
Gilles Peskine | b6ce234 | 2019-07-04 19:00:31 +0200 | [diff] [blame] | 406 | help=("path to file containing symbols and types to skip " |
| 407 | "(typically \"-s identifiers\" after running " |
| 408 | "\"tests/scripts/list-identifiers.sh --internal\")") |
Darryl Green | c2883a2 | 2019-02-20 15:01:56 +0000 | [diff] [blame] | 409 | ) |
Darryl Green | e62f9bb | 2019-02-21 13:09:26 +0000 | [diff] [blame] | 410 | parser.add_argument( |
Gilles Peskine | 793778f | 2021-04-23 16:32:32 +0200 | [diff] [blame^] | 411 | "--check-abi", |
| 412 | action='store_true', default=True, |
| 413 | help="Perform ABI comparison (default: yes)" |
| 414 | ) |
| 415 | parser.add_argument("--no-check-abi", action='store_false', dest='check_abi') |
| 416 | parser.add_argument( |
| 417 | "--check-api", |
| 418 | action='store_true', default=True, |
| 419 | help="Perform API comparison (default: yes)" |
| 420 | ) |
| 421 | parser.add_argument("--no-check-api", action='store_false', dest='check_api') |
| 422 | parser.add_argument( |
Darryl Green | e62f9bb | 2019-02-21 13:09:26 +0000 | [diff] [blame] | 423 | "-b", "--brief", action="store_true", |
| 424 | help="output only the list of issues to stdout, instead of a full report", |
| 425 | ) |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 426 | abi_args = parser.parse_args() |
Darryl Green | 492bc40 | 2019-04-11 15:50:41 +0100 | [diff] [blame] | 427 | if os.path.isfile(abi_args.report_dir): |
| 428 | print("Error: {} is not a directory".format(abi_args.report_dir)) |
| 429 | parser.exit() |
Darryl Green | 0d1ca51 | 2019-04-09 09:14:17 +0100 | [diff] [blame] | 430 | old_version = SimpleNamespace( |
| 431 | version="old", |
| 432 | repository=abi_args.old_repo, |
| 433 | revision=abi_args.old_rev, |
Gilles Peskine | 3e2da4a | 2019-07-04 19:01:22 +0200 | [diff] [blame] | 434 | commit=None, |
Darryl Green | 0d1ca51 | 2019-04-09 09:14:17 +0100 | [diff] [blame] | 435 | crypto_repository=abi_args.old_crypto_repo, |
| 436 | crypto_revision=abi_args.old_crypto_rev, |
| 437 | abi_dumps={}, |
| 438 | modules={} |
Darryl Green | 8184df5 | 2019-04-05 17:06:17 +0100 | [diff] [blame] | 439 | ) |
Darryl Green | 0d1ca51 | 2019-04-09 09:14:17 +0100 | [diff] [blame] | 440 | new_version = SimpleNamespace( |
| 441 | version="new", |
| 442 | repository=abi_args.new_repo, |
| 443 | revision=abi_args.new_rev, |
Gilles Peskine | 3e2da4a | 2019-07-04 19:01:22 +0200 | [diff] [blame] | 444 | commit=None, |
Darryl Green | 0d1ca51 | 2019-04-09 09:14:17 +0100 | [diff] [blame] | 445 | crypto_repository=abi_args.new_crypto_repo, |
| 446 | crypto_revision=abi_args.new_crypto_rev, |
| 447 | abi_dumps={}, |
| 448 | modules={} |
Darryl Green | 8184df5 | 2019-04-05 17:06:17 +0100 | [diff] [blame] | 449 | ) |
Darryl Green | 0d1ca51 | 2019-04-09 09:14:17 +0100 | [diff] [blame] | 450 | configuration = SimpleNamespace( |
| 451 | verbose=abi_args.verbose, |
| 452 | report_dir=abi_args.report_dir, |
| 453 | keep_all_reports=abi_args.keep_all_reports, |
| 454 | brief=abi_args.brief, |
Gilles Peskine | 793778f | 2021-04-23 16:32:32 +0200 | [diff] [blame^] | 455 | check_abi=abi_args.check_abi, |
| 456 | check_api=abi_args.check_api, |
Darryl Green | 0d1ca51 | 2019-04-09 09:14:17 +0100 | [diff] [blame] | 457 | skip_file=abi_args.skip_file |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 458 | ) |
Darryl Green | 0d1ca51 | 2019-04-09 09:14:17 +0100 | [diff] [blame] | 459 | abi_check = AbiChecker(old_version, new_version, configuration) |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 460 | return_code = abi_check.check_for_abi_changes() |
| 461 | sys.exit(return_code) |
Gilles Peskine | e915d53 | 2019-02-25 21:39:42 +0100 | [diff] [blame] | 462 | except Exception: # pylint: disable=broad-except |
| 463 | # Print the backtrace and exit explicitly so as to exit with |
| 464 | # status 2, not 1. |
Darryl Green | a6f430f | 2018-03-15 10:12:06 +0000 | [diff] [blame] | 465 | traceback.print_exc() |
Darryl Green | 7c2dd58 | 2018-03-01 14:53:49 +0000 | [diff] [blame] | 466 | sys.exit(2) |
| 467 | |
| 468 | |
| 469 | if __name__ == "__main__": |
| 470 | run_main() |