Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| 2 | """ |
| 3 | This file is part of Mbed TLS (https://tls.mbed.org) |
| 4 | |
| 5 | Copyright (c) 2018, Arm Limited, All Rights Reserved |
| 6 | |
| 7 | Purpose |
| 8 | |
| 9 | This script checks the current state of the source code for minor issues, |
| 10 | including incorrect file permissions, presence of tabs, non-Unix line endings, |
| 11 | trailing whitespace, presence of UTF-8 BOM, and TODO comments. |
| 12 | Note: requires python 3, must be run from Mbed TLS root. |
| 13 | """ |
| 14 | |
| 15 | import os |
| 16 | import argparse |
| 17 | import logging |
| 18 | import codecs |
| 19 | import sys |
| 20 | |
| 21 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 22 | class FileIssueTracker(object): |
| 23 | """Base class for file-wide issue tracking. |
| 24 | |
| 25 | To implement a checker that processes a file as a whole, inherit from |
Gilles Peskine | 1e9698a | 2019-02-25 21:10:04 +0100 | [diff] [blame] | 26 | this class and implement `check_file_for_issue` and define ``heading``. |
| 27 | |
| 28 | ``files_exemptions``: files whose name ends with a string in this set |
| 29 | will not be checked. |
| 30 | |
| 31 | ``heading``: human-readable description of the issue |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 32 | """ |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 33 | |
Gilles Peskine | 1e9698a | 2019-02-25 21:10:04 +0100 | [diff] [blame] | 34 | files_exemptions = frozenset() |
| 35 | # heading must be defined in derived classes. |
| 36 | # pylint: disable=no-member |
| 37 | |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 38 | def __init__(self): |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 39 | self.files_with_issues = {} |
| 40 | |
| 41 | def should_check_file(self, filepath): |
| 42 | for files_exemption in self.files_exemptions: |
| 43 | if filepath.endswith(files_exemption): |
| 44 | return False |
| 45 | return True |
| 46 | |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 47 | def check_file_for_issue(self, filepath): |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 48 | raise NotImplementedError |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 49 | |
Gilles Peskine | 0439805 | 2018-11-23 21:11:30 +0100 | [diff] [blame] | 50 | def record_issue(self, filepath, line_number): |
| 51 | if filepath not in self.files_with_issues.keys(): |
| 52 | self.files_with_issues[filepath] = [] |
| 53 | self.files_with_issues[filepath].append(line_number) |
| 54 | |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 55 | def output_file_issues(self, logger): |
| 56 | if self.files_with_issues.values(): |
| 57 | logger.info(self.heading) |
| 58 | for filename, lines in sorted(self.files_with_issues.items()): |
| 59 | if lines: |
| 60 | logger.info("{}: {}".format( |
| 61 | filename, ", ".join(str(x) for x in lines) |
| 62 | )) |
| 63 | else: |
| 64 | logger.info(filename) |
| 65 | logger.info("") |
| 66 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 67 | class LineIssueTracker(FileIssueTracker): |
| 68 | """Base class for line-by-line issue tracking. |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 69 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 70 | To implement a checker that processes files line by line, inherit from |
| 71 | this class and implement `line_with_issue`. |
| 72 | """ |
| 73 | |
| 74 | def issue_with_line(self, line, filepath): |
| 75 | raise NotImplementedError |
| 76 | |
| 77 | def check_file_line(self, filepath, line, line_number): |
| 78 | if self.issue_with_line(line, filepath): |
| 79 | self.record_issue(filepath, line_number) |
| 80 | |
| 81 | def check_file_for_issue(self, filepath): |
| 82 | with open(filepath, "rb") as f: |
| 83 | for i, line in enumerate(iter(f.readline, b"")): |
| 84 | self.check_file_line(filepath, line, i + 1) |
| 85 | |
| 86 | class PermissionIssueTracker(FileIssueTracker): |
Gilles Peskine | 0d060ef | 2019-02-25 20:35:31 +0100 | [diff] [blame] | 87 | """Track files with bad permissions. |
| 88 | |
| 89 | Files that are not executable scripts must not be executable.""" |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 90 | |
Gilles Peskine | 1e9698a | 2019-02-25 21:10:04 +0100 | [diff] [blame] | 91 | heading = "Incorrect permissions:" |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 92 | |
| 93 | def check_file_for_issue(self, filepath): |
Gilles Peskine | 23e64f2 | 2019-02-25 21:24:27 +0100 | [diff] [blame] | 94 | is_executable = os.access(filepath, os.X_OK) |
| 95 | should_be_executable = filepath.endswith((".sh", ".pl", ".py")) |
| 96 | if is_executable != should_be_executable: |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 97 | self.files_with_issues[filepath] = None |
| 98 | |
| 99 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 100 | class EndOfFileNewlineIssueTracker(FileIssueTracker): |
Gilles Peskine | 0d060ef | 2019-02-25 20:35:31 +0100 | [diff] [blame] | 101 | """Track files that end with an incomplete line |
| 102 | (no newline character at the end of the last line).""" |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 103 | |
Gilles Peskine | 1e9698a | 2019-02-25 21:10:04 +0100 | [diff] [blame] | 104 | heading = "Missing newline at end of file:" |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 105 | |
| 106 | def check_file_for_issue(self, filepath): |
| 107 | with open(filepath, "rb") as f: |
| 108 | if not f.read().endswith(b"\n"): |
| 109 | self.files_with_issues[filepath] = None |
| 110 | |
| 111 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 112 | class Utf8BomIssueTracker(FileIssueTracker): |
Gilles Peskine | 0d060ef | 2019-02-25 20:35:31 +0100 | [diff] [blame] | 113 | """Track files that start with a UTF-8 BOM. |
| 114 | Files should be ASCII or UTF-8. Valid UTF-8 does not start with a BOM.""" |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 115 | |
Gilles Peskine | 1e9698a | 2019-02-25 21:10:04 +0100 | [diff] [blame] | 116 | heading = "UTF-8 BOM present:" |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 117 | |
| 118 | def check_file_for_issue(self, filepath): |
| 119 | with open(filepath, "rb") as f: |
| 120 | if f.read().startswith(codecs.BOM_UTF8): |
| 121 | self.files_with_issues[filepath] = None |
| 122 | |
| 123 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 124 | class LineEndingIssueTracker(LineIssueTracker): |
Gilles Peskine | 0d060ef | 2019-02-25 20:35:31 +0100 | [diff] [blame] | 125 | """Track files with non-Unix line endings (i.e. files with CR).""" |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 126 | |
Gilles Peskine | 1e9698a | 2019-02-25 21:10:04 +0100 | [diff] [blame] | 127 | heading = "Non Unix line endings:" |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 128 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 129 | def issue_with_line(self, line, _filepath): |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 130 | return b"\r" in line |
| 131 | |
| 132 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 133 | class TrailingWhitespaceIssueTracker(LineIssueTracker): |
Gilles Peskine | 0d060ef | 2019-02-25 20:35:31 +0100 | [diff] [blame] | 134 | """Track lines with trailing whitespace.""" |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 135 | |
Gilles Peskine | 1e9698a | 2019-02-25 21:10:04 +0100 | [diff] [blame] | 136 | heading = "Trailing whitespace:" |
| 137 | files_exemptions = frozenset(".md") |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 138 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 139 | def issue_with_line(self, line, _filepath): |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 140 | return line.rstrip(b"\r\n") != line.rstrip() |
| 141 | |
| 142 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 143 | class TabIssueTracker(LineIssueTracker): |
Gilles Peskine | 0d060ef | 2019-02-25 20:35:31 +0100 | [diff] [blame] | 144 | """Track lines with tabs.""" |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 145 | |
Gilles Peskine | 1e9698a | 2019-02-25 21:10:04 +0100 | [diff] [blame] | 146 | heading = "Tabs present:" |
| 147 | files_exemptions = frozenset([ |
| 148 | "Makefile", |
| 149 | "generate_visualc_files.pl", |
| 150 | ]) |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 151 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 152 | def issue_with_line(self, line, _filepath): |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 153 | return b"\t" in line |
| 154 | |
| 155 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 156 | class MergeArtifactIssueTracker(LineIssueTracker): |
Gilles Peskine | 0d060ef | 2019-02-25 20:35:31 +0100 | [diff] [blame] | 157 | """Track lines with merge artifacts. |
| 158 | These are leftovers from a ``git merge`` that wasn't fully edited.""" |
Gilles Peskine | c117d59 | 2018-11-23 21:11:52 +0100 | [diff] [blame] | 159 | |
Gilles Peskine | 1e9698a | 2019-02-25 21:10:04 +0100 | [diff] [blame] | 160 | heading = "Merge artifact:" |
Gilles Peskine | c117d59 | 2018-11-23 21:11:52 +0100 | [diff] [blame] | 161 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 162 | def issue_with_line(self, line, _filepath): |
Gilles Peskine | c117d59 | 2018-11-23 21:11:52 +0100 | [diff] [blame] | 163 | # Detect leftover git conflict markers. |
| 164 | if line.startswith(b'<<<<<<< ') or line.startswith(b'>>>>>>> '): |
| 165 | return True |
| 166 | if line.startswith(b'||||||| '): # from merge.conflictStyle=diff3 |
| 167 | return True |
| 168 | if line.rstrip(b'\r\n') == b'=======' and \ |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 169 | not _filepath.endswith('.md'): |
Gilles Peskine | c117d59 | 2018-11-23 21:11:52 +0100 | [diff] [blame] | 170 | return True |
| 171 | return False |
| 172 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 173 | class TodoIssueTracker(LineIssueTracker): |
Gilles Peskine | 0d060ef | 2019-02-25 20:35:31 +0100 | [diff] [blame] | 174 | """Track lines containing ``TODO``.""" |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 175 | |
Gilles Peskine | 1e9698a | 2019-02-25 21:10:04 +0100 | [diff] [blame] | 176 | heading = "TODO present:" |
| 177 | files_exemptions = frozenset([ |
| 178 | os.path.basename(__file__), |
| 179 | "benchmark.c", |
| 180 | "pull_request_template.md", |
| 181 | ]) |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 182 | |
Gilles Peskine | 6ee576e | 2019-02-25 20:59:05 +0100 | [diff] [blame] | 183 | def issue_with_line(self, line, _filepath): |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 184 | return b"todo" in line.lower() |
| 185 | |
| 186 | |
| 187 | class IntegrityChecker(object): |
Gilles Peskine | 0d060ef | 2019-02-25 20:35:31 +0100 | [diff] [blame] | 188 | """Sanity-check files under the current directory.""" |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 189 | |
| 190 | def __init__(self, log_file): |
Gilles Peskine | 0d060ef | 2019-02-25 20:35:31 +0100 | [diff] [blame] | 191 | """Instantiate the sanity checker. |
| 192 | Check files under the current directory. |
| 193 | Write a report of issues to log_file.""" |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 194 | self.check_repo_path() |
| 195 | self.logger = None |
| 196 | self.setup_logger(log_file) |
| 197 | self.files_to_check = ( |
| 198 | ".c", ".h", ".sh", ".pl", ".py", ".md", ".function", ".data", |
| 199 | "Makefile", "CMakeLists.txt", "ChangeLog" |
| 200 | ) |
Gilles Peskine | 95c5575 | 2018-09-28 11:48:10 +0200 | [diff] [blame] | 201 | self.excluded_directories = ['.git', 'mbed-os'] |
| 202 | self.excluded_paths = list(map(os.path.normpath, [ |
| 203 | 'cov-int', |
| 204 | 'examples', |
Gilles Peskine | 95c5575 | 2018-09-28 11:48:10 +0200 | [diff] [blame] | 205 | ])) |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 206 | self.issues_to_check = [ |
| 207 | PermissionIssueTracker(), |
| 208 | EndOfFileNewlineIssueTracker(), |
| 209 | Utf8BomIssueTracker(), |
| 210 | LineEndingIssueTracker(), |
| 211 | TrailingWhitespaceIssueTracker(), |
| 212 | TabIssueTracker(), |
Gilles Peskine | c117d59 | 2018-11-23 21:11:52 +0100 | [diff] [blame] | 213 | MergeArtifactIssueTracker(), |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 214 | TodoIssueTracker(), |
| 215 | ] |
| 216 | |
Gilles Peskine | 0d060ef | 2019-02-25 20:35:31 +0100 | [diff] [blame] | 217 | @staticmethod |
| 218 | def check_repo_path(): |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 219 | if not all(os.path.isdir(d) for d in ["include", "library", "tests"]): |
| 220 | raise Exception("Must be run from Mbed TLS root") |
| 221 | |
| 222 | def setup_logger(self, log_file, level=logging.INFO): |
| 223 | self.logger = logging.getLogger() |
| 224 | self.logger.setLevel(level) |
| 225 | if log_file: |
| 226 | handler = logging.FileHandler(log_file) |
| 227 | self.logger.addHandler(handler) |
| 228 | else: |
| 229 | console = logging.StreamHandler() |
| 230 | self.logger.addHandler(console) |
| 231 | |
Gilles Peskine | 95c5575 | 2018-09-28 11:48:10 +0200 | [diff] [blame] | 232 | def prune_branch(self, root, d): |
| 233 | if d in self.excluded_directories: |
| 234 | return True |
| 235 | if os.path.normpath(os.path.join(root, d)) in self.excluded_paths: |
| 236 | return True |
| 237 | return False |
| 238 | |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 239 | def check_files(self): |
Gilles Peskine | 95c5575 | 2018-09-28 11:48:10 +0200 | [diff] [blame] | 240 | for root, dirs, files in os.walk("."): |
| 241 | dirs[:] = sorted(d for d in dirs if not self.prune_branch(root, d)) |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 242 | for filename in sorted(files): |
| 243 | filepath = os.path.join(root, filename) |
Gilles Peskine | 95c5575 | 2018-09-28 11:48:10 +0200 | [diff] [blame] | 244 | if not filepath.endswith(self.files_to_check): |
Darryl Green | 10d9ce3 | 2018-02-28 10:02:55 +0000 | [diff] [blame] | 245 | continue |
| 246 | for issue_to_check in self.issues_to_check: |
| 247 | if issue_to_check.should_check_file(filepath): |
| 248 | issue_to_check.check_file_for_issue(filepath) |
| 249 | |
| 250 | def output_issues(self): |
| 251 | integrity_return_code = 0 |
| 252 | for issue_to_check in self.issues_to_check: |
| 253 | if issue_to_check.files_with_issues: |
| 254 | integrity_return_code = 1 |
| 255 | issue_to_check.output_file_issues(self.logger) |
| 256 | return integrity_return_code |
| 257 | |
| 258 | |
| 259 | def run_main(): |
| 260 | parser = argparse.ArgumentParser( |
| 261 | description=( |
| 262 | "This script checks the current state of the source code for " |
| 263 | "minor issues, including incorrect file permissions, " |
| 264 | "presence of tabs, non-Unix line endings, trailing whitespace, " |
| 265 | "presence of UTF-8 BOM, and TODO comments. " |
| 266 | "Note: requires python 3, must be run from Mbed TLS root." |
| 267 | ) |
| 268 | ) |
| 269 | parser.add_argument( |
| 270 | "-l", "--log_file", type=str, help="path to optional output log", |
| 271 | ) |
| 272 | check_args = parser.parse_args() |
| 273 | integrity_check = IntegrityChecker(check_args.log_file) |
| 274 | integrity_check.check_files() |
| 275 | return_code = integrity_check.output_issues() |
| 276 | sys.exit(return_code) |
| 277 | |
| 278 | |
| 279 | if __name__ == "__main__": |
| 280 | run_main() |