Valentin Rothberg | 7c5227a | 2016-08-28 08:51:28 +0200 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Thomas Gleixner | 4f19048 | 2019-05-27 08:55:14 +0200 | [diff] [blame] | 2 | # SPDX-License-Identifier: GPL-2.0-only |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 3 | |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 4 | """Find Kconfig symbols that are referenced but not defined.""" |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 5 | |
Valentin Rothberg | 8e8e333 | 2017-01-18 13:08:19 +0100 | [diff] [blame] | 6 | # (c) 2014-2017 Valentin Rothberg <[email protected]> |
Valentin Rothberg | cc641d55 | 2014-11-08 20:56:35 +0100 | [diff] [blame] | 7 | # (c) 2014 Stefan Hengelein <[email protected]> |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 8 | # |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 9 | |
| 10 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 11 | import argparse |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 12 | import difflib |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 13 | import os |
| 14 | import re |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 15 | import signal |
Valentin Rothberg | f175ba1 | 2016-08-27 10:59:07 +0200 | [diff] [blame] | 16 | import subprocess |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 17 | import sys |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 18 | from multiprocessing import Pool, cpu_count |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 19 | |
Valentin Rothberg | cc641d55 | 2014-11-08 20:56:35 +0100 | [diff] [blame] | 20 | |
| 21 | # regex expressions |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 22 | OPERATORS = r"&|\(|\)|\||\!" |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 23 | SYMBOL = r"(?:\w*[A-Z0-9]\w*){2,}" |
| 24 | DEF = r"^\s*(?:menu){,1}config\s+(" + SYMBOL + r")\s*" |
| 25 | EXPR = r"(?:" + OPERATORS + r"|\s|" + SYMBOL + r")+" |
Valentin Rothberg | 0bd38ae | 2015-07-27 12:33:05 +0200 | [diff] [blame] | 26 | DEFAULT = r"default\s+.*?(?:if\s.+){,1}" |
Valentin Rothberg | 3b28f4f | 2017-02-02 18:00:44 +0100 | [diff] [blame] | 27 | STMT = r"^\s*(?:if|select|imply|depends\s+on|(?:" + DEFAULT + r"))\s+" + EXPR |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 28 | SOURCE_SYMBOL = r"(?:\W|\b)+[D]{,1}CONFIG_(" + SYMBOL + r")" |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 29 | |
Valentin Rothberg | cc641d55 | 2014-11-08 20:56:35 +0100 | [diff] [blame] | 30 | # regex objects |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 31 | REGEX_FILE_KCONFIG = re.compile(r".*Kconfig[\.\w+\-]*$") |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 32 | REGEX_SYMBOL = re.compile(r'(?!\B)' + SYMBOL + r'(?!\B)') |
| 33 | REGEX_SOURCE_SYMBOL = re.compile(SOURCE_SYMBOL) |
Valentin Rothberg | cc641d55 | 2014-11-08 20:56:35 +0100 | [diff] [blame] | 34 | REGEX_KCONFIG_DEF = re.compile(DEF) |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 35 | REGEX_KCONFIG_EXPR = re.compile(EXPR) |
| 36 | REGEX_KCONFIG_STMT = re.compile(STMT) |
Masahiro Yamada | f70f74d | 2020-06-17 12:02:19 +0900 | [diff] [blame] | 37 | REGEX_KCONFIG_HELP = re.compile(r"^\s+help\s*$") |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 38 | REGEX_FILTER_SYMBOLS = re.compile(r"[A-Za-z0-9]$") |
Valentin Rothberg | 0bd38ae | 2015-07-27 12:33:05 +0200 | [diff] [blame] | 39 | REGEX_NUMERIC = re.compile(r"0[xX][0-9a-fA-F]+|[0-9]+") |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 40 | REGEX_QUOTES = re.compile("(\"(.*?)\")") |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 41 | |
| 42 | |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 43 | def parse_options(): |
| 44 | """The user interface of this module.""" |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 45 | usage = "Run this tool to detect Kconfig symbols that are referenced but " \ |
| 46 | "not defined in Kconfig. If no option is specified, " \ |
| 47 | "checkkconfigsymbols defaults to check your current tree. " \ |
| 48 | "Please note that specifying commits will 'git reset --hard\' " \ |
| 49 | "your current tree! You may save uncommitted changes to avoid " \ |
| 50 | "losing data." |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 51 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 52 | parser = argparse.ArgumentParser(description=usage) |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 53 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 54 | parser.add_argument('-c', '--commit', dest='commit', action='store', |
| 55 | default="", |
| 56 | help="check if the specified commit (hash) introduces " |
| 57 | "undefined Kconfig symbols") |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 58 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 59 | parser.add_argument('-d', '--diff', dest='diff', action='store', |
| 60 | default="", |
| 61 | help="diff undefined symbols between two commits " |
| 62 | "(e.g., -d commmit1..commit2)") |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 63 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 64 | parser.add_argument('-f', '--find', dest='find', action='store_true', |
| 65 | default=False, |
| 66 | help="find and show commits that may cause symbols to be " |
| 67 | "missing (required to run with --diff)") |
Valentin Rothberg | a42fa92 | 2015-06-01 16:00:19 +0200 | [diff] [blame] | 68 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 69 | parser.add_argument('-i', '--ignore', dest='ignore', action='store', |
| 70 | default="", |
| 71 | help="ignore files matching this Python regex " |
| 72 | "(e.g., -i '.*defconfig')") |
Valentin Rothberg | cf132e4 | 2015-04-29 16:58:27 +0200 | [diff] [blame] | 73 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 74 | parser.add_argument('-s', '--sim', dest='sim', action='store', default="", |
| 75 | help="print a list of max. 10 string-similar symbols") |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 76 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 77 | parser.add_argument('--force', dest='force', action='store_true', |
| 78 | default=False, |
| 79 | help="reset current Git tree even when it's dirty") |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 80 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 81 | parser.add_argument('--no-color', dest='color', action='store_false', |
| 82 | default=True, |
| 83 | help="don't print colored output (default when not " |
| 84 | "outputting to a terminal)") |
Andrew Donnellan | 4c73c08 | 2016-07-05 17:47:37 +1000 | [diff] [blame] | 85 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 86 | args = parser.parse_args() |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 87 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 88 | if args.commit and args.diff: |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 89 | sys.exit("Please specify only one option at once.") |
| 90 | |
Valentin Rothberg | 0d18c19 | 2016-10-27 14:34:57 +0200 | [diff] [blame] | 91 | if args.diff and not re.match(r"^[\w\-\.\^]+\.\.[\w\-\.\^]+$", args.diff): |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 92 | sys.exit("Please specify valid input in the following format: " |
Andreas Ziegler | 38cbfe4 | 2016-03-31 09:24:29 +0200 | [diff] [blame] | 93 | "\'commit1..commit2\'") |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 94 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 95 | if args.commit or args.diff: |
| 96 | if not args.force and tree_is_dirty(): |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 97 | sys.exit("The current Git tree is dirty (see 'git status'). " |
| 98 | "Running this script may\ndelete important data since it " |
| 99 | "calls 'git reset --hard' for some performance\nreasons. " |
| 100 | " Please run this script in a clean Git tree or pass " |
| 101 | "'--force' if you\nwant to ignore this warning and " |
| 102 | "continue.") |
| 103 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 104 | if args.commit: |
Ariel Marcovitch | d62d5ae | 2021-09-01 17:52:12 +0300 | [diff] [blame^] | 105 | if args.commit.startswith('HEAD'): |
| 106 | sys.exit("The --commit option can't use the HEAD ref") |
| 107 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 108 | args.find = False |
Valentin Rothberg | a42fa92 | 2015-06-01 16:00:19 +0200 | [diff] [blame] | 109 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 110 | if args.ignore: |
Valentin Rothberg | cf132e4 | 2015-04-29 16:58:27 +0200 | [diff] [blame] | 111 | try: |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 112 | re.match(args.ignore, "this/is/just/a/test.c") |
Valentin Rothberg | cf132e4 | 2015-04-29 16:58:27 +0200 | [diff] [blame] | 113 | except: |
| 114 | sys.exit("Please specify a valid Python regex.") |
| 115 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 116 | return args |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 117 | |
| 118 | |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 119 | def main(): |
| 120 | """Main function of this module.""" |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 121 | args = parse_options() |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 122 | |
Valentin Rothberg | 36c79c7f | 2016-08-28 08:51:30 +0200 | [diff] [blame] | 123 | global COLOR |
| 124 | COLOR = args.color and sys.stdout.isatty() |
Andrew Donnellan | 4c73c08 | 2016-07-05 17:47:37 +1000 | [diff] [blame] | 125 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 126 | if args.sim and not args.commit and not args.diff: |
| 127 | sims = find_sims(args.sim, args.ignore) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 128 | if sims: |
Valentin Rothberg | 7c5227a | 2016-08-28 08:51:28 +0200 | [diff] [blame] | 129 | print("%s: %s" % (yel("Similar symbols"), ', '.join(sims))) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 130 | else: |
Valentin Rothberg | 7c5227a | 2016-08-28 08:51:28 +0200 | [diff] [blame] | 131 | print("%s: no similar symbols found" % yel("Similar symbols")) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 132 | sys.exit(0) |
| 133 | |
| 134 | # dictionary of (un)defined symbols |
| 135 | defined = {} |
| 136 | undefined = {} |
| 137 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 138 | if args.commit or args.diff: |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 139 | head = get_head() |
| 140 | |
| 141 | # get commit range |
| 142 | commit_a = None |
| 143 | commit_b = None |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 144 | if args.commit: |
| 145 | commit_a = args.commit + "~" |
| 146 | commit_b = args.commit |
| 147 | elif args.diff: |
| 148 | split = args.diff.split("..") |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 149 | commit_a = split[0] |
| 150 | commit_b = split[1] |
| 151 | undefined_a = {} |
| 152 | undefined_b = {} |
| 153 | |
| 154 | # get undefined items before the commit |
Valentin Rothberg | 2f9cc12 | 2016-08-28 08:51:32 +0200 | [diff] [blame] | 155 | reset(commit_a) |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 156 | undefined_a, _ = check_symbols(args.ignore) |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 157 | |
| 158 | # get undefined items for the commit |
Valentin Rothberg | 2f9cc12 | 2016-08-28 08:51:32 +0200 | [diff] [blame] | 159 | reset(commit_b) |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 160 | undefined_b, defined = check_symbols(args.ignore) |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 161 | |
| 162 | # report cases that are present for the commit but not before |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 163 | for symbol in sorted(undefined_b): |
| 164 | # symbol has not been undefined before |
| 165 | if symbol not in undefined_a: |
| 166 | files = sorted(undefined_b.get(symbol)) |
| 167 | undefined[symbol] = files |
| 168 | # check if there are new files that reference the undefined symbol |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 169 | else: |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 170 | files = sorted(undefined_b.get(symbol) - |
| 171 | undefined_a.get(symbol)) |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 172 | if files: |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 173 | undefined[symbol] = files |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 174 | |
| 175 | # reset to head |
Valentin Rothberg | 2f9cc12 | 2016-08-28 08:51:32 +0200 | [diff] [blame] | 176 | reset(head) |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 177 | |
| 178 | # default to check the entire tree |
| 179 | else: |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 180 | undefined, defined = check_symbols(args.ignore) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 181 | |
| 182 | # now print the output |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 183 | for symbol in sorted(undefined): |
| 184 | print(red(symbol)) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 185 | |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 186 | files = sorted(undefined.get(symbol)) |
Valentin Rothberg | 7c5227a | 2016-08-28 08:51:28 +0200 | [diff] [blame] | 187 | print("%s: %s" % (yel("Referencing files"), ", ".join(files))) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 188 | |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 189 | sims = find_sims(symbol, args.ignore, defined) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 190 | sims_out = yel("Similar symbols") |
| 191 | if sims: |
Valentin Rothberg | 7c5227a | 2016-08-28 08:51:28 +0200 | [diff] [blame] | 192 | print("%s: %s" % (sims_out, ', '.join(sims))) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 193 | else: |
Valentin Rothberg | 7c5227a | 2016-08-28 08:51:28 +0200 | [diff] [blame] | 194 | print("%s: %s" % (sims_out, "no similar symbols found")) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 195 | |
Valentin Rothberg | 14390e3 | 2016-08-28 08:51:29 +0200 | [diff] [blame] | 196 | if args.find: |
Valentin Rothberg | 7c5227a | 2016-08-28 08:51:28 +0200 | [diff] [blame] | 197 | print("%s:" % yel("Commits changing symbol")) |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 198 | commits = find_commits(symbol, args.diff) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 199 | if commits: |
| 200 | for commit in commits: |
| 201 | commit = commit.split(" ", 1) |
Valentin Rothberg | 7c5227a | 2016-08-28 08:51:28 +0200 | [diff] [blame] | 202 | print("\t- %s (\"%s\")" % (yel(commit[0]), commit[1])) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 203 | else: |
Valentin Rothberg | 7c5227a | 2016-08-28 08:51:28 +0200 | [diff] [blame] | 204 | print("\t- no commit found") |
Valentin Rothberg | 36c79c7f | 2016-08-28 08:51:30 +0200 | [diff] [blame] | 205 | print() # new line |
Valentin Rothberg | c745566 | 2015-06-01 16:00:20 +0200 | [diff] [blame] | 206 | |
| 207 | |
Valentin Rothberg | 2f9cc12 | 2016-08-28 08:51:32 +0200 | [diff] [blame] | 208 | def reset(commit): |
| 209 | """Reset current git tree to %commit.""" |
| 210 | execute(["git", "reset", "--hard", commit]) |
| 211 | |
| 212 | |
Valentin Rothberg | c745566 | 2015-06-01 16:00:20 +0200 | [diff] [blame] | 213 | def yel(string): |
| 214 | """ |
| 215 | Color %string yellow. |
| 216 | """ |
Valentin Rothberg | 36c79c7f | 2016-08-28 08:51:30 +0200 | [diff] [blame] | 217 | return "\033[33m%s\033[0m" % string if COLOR else string |
Valentin Rothberg | c745566 | 2015-06-01 16:00:20 +0200 | [diff] [blame] | 218 | |
| 219 | |
| 220 | def red(string): |
| 221 | """ |
| 222 | Color %string red. |
| 223 | """ |
Valentin Rothberg | 36c79c7f | 2016-08-28 08:51:30 +0200 | [diff] [blame] | 224 | return "\033[31m%s\033[0m" % string if COLOR else string |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 225 | |
| 226 | |
| 227 | def execute(cmd): |
| 228 | """Execute %cmd and return stdout. Exit in case of error.""" |
Valentin Rothberg | f175ba1 | 2016-08-27 10:59:07 +0200 | [diff] [blame] | 229 | try: |
Valentin Rothberg | 2f9cc12 | 2016-08-28 08:51:32 +0200 | [diff] [blame] | 230 | stdout = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=False) |
Valentin Rothberg | 7c5227a | 2016-08-28 08:51:28 +0200 | [diff] [blame] | 231 | stdout = stdout.decode(errors='replace') |
Valentin Rothberg | f175ba1 | 2016-08-27 10:59:07 +0200 | [diff] [blame] | 232 | except subprocess.CalledProcessError as fail: |
Valentin Rothberg | 2f9cc12 | 2016-08-28 08:51:32 +0200 | [diff] [blame] | 233 | exit(fail) |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 234 | return stdout |
| 235 | |
| 236 | |
Valentin Rothberg | a42fa92 | 2015-06-01 16:00:19 +0200 | [diff] [blame] | 237 | def find_commits(symbol, diff): |
| 238 | """Find commits changing %symbol in the given range of %diff.""" |
Valentin Rothberg | 2f9cc12 | 2016-08-28 08:51:32 +0200 | [diff] [blame] | 239 | commits = execute(["git", "log", "--pretty=oneline", |
| 240 | "--abbrev-commit", "-G", |
| 241 | symbol, diff]) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 242 | return [x for x in commits.split("\n") if x] |
Valentin Rothberg | a42fa92 | 2015-06-01 16:00:19 +0200 | [diff] [blame] | 243 | |
| 244 | |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 245 | def tree_is_dirty(): |
| 246 | """Return true if the current working tree is dirty (i.e., if any file has |
| 247 | been added, deleted, modified, renamed or copied but not committed).""" |
Valentin Rothberg | 2f9cc12 | 2016-08-28 08:51:32 +0200 | [diff] [blame] | 248 | stdout = execute(["git", "status", "--porcelain"]) |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 249 | for line in stdout: |
| 250 | if re.findall(r"[URMADC]{1}", line[:2]): |
| 251 | return True |
| 252 | return False |
| 253 | |
| 254 | |
| 255 | def get_head(): |
| 256 | """Return commit hash of current HEAD.""" |
Valentin Rothberg | 2f9cc12 | 2016-08-28 08:51:32 +0200 | [diff] [blame] | 257 | stdout = execute(["git", "rev-parse", "HEAD"]) |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 258 | return stdout.strip('\n') |
| 259 | |
| 260 | |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 261 | def partition(lst, size): |
| 262 | """Partition list @lst into eveni-sized lists of size @size.""" |
Valentin Rothberg | 7c5227a | 2016-08-28 08:51:28 +0200 | [diff] [blame] | 263 | return [lst[i::size] for i in range(size)] |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 264 | |
| 265 | |
| 266 | def init_worker(): |
| 267 | """Set signal handler to ignore SIGINT.""" |
| 268 | signal.signal(signal.SIGINT, signal.SIG_IGN) |
| 269 | |
| 270 | |
Valentin Rothberg | 36c79c7f | 2016-08-28 08:51:30 +0200 | [diff] [blame] | 271 | def find_sims(symbol, ignore, defined=[]): |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 272 | """Return a list of max. ten Kconfig symbols that are string-similar to |
| 273 | @symbol.""" |
| 274 | if defined: |
Valentin Rothberg | 8e8e333 | 2017-01-18 13:08:19 +0100 | [diff] [blame] | 275 | return difflib.get_close_matches(symbol, set(defined), 10) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 276 | |
| 277 | pool = Pool(cpu_count(), init_worker) |
| 278 | kfiles = [] |
| 279 | for gitfile in get_files(): |
| 280 | if REGEX_FILE_KCONFIG.match(gitfile): |
| 281 | kfiles.append(gitfile) |
| 282 | |
| 283 | arglist = [] |
| 284 | for part in partition(kfiles, cpu_count()): |
| 285 | arglist.append((part, ignore)) |
| 286 | |
| 287 | for res in pool.map(parse_kconfig_files, arglist): |
| 288 | defined.extend(res[0]) |
| 289 | |
Valentin Rothberg | 8e8e333 | 2017-01-18 13:08:19 +0100 | [diff] [blame] | 290 | return difflib.get_close_matches(symbol, set(defined), 10) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 291 | |
| 292 | |
| 293 | def get_files(): |
| 294 | """Return a list of all files in the current git directory.""" |
| 295 | # use 'git ls-files' to get the worklist |
Valentin Rothberg | 2f9cc12 | 2016-08-28 08:51:32 +0200 | [diff] [blame] | 296 | stdout = execute(["git", "ls-files"]) |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 297 | if len(stdout) > 0 and stdout[-1] == "\n": |
| 298 | stdout = stdout[:-1] |
| 299 | |
| 300 | files = [] |
| 301 | for gitfile in stdout.rsplit("\n"): |
| 302 | if ".git" in gitfile or "ChangeLog" in gitfile or \ |
| 303 | ".log" in gitfile or os.path.isdir(gitfile) or \ |
| 304 | gitfile.startswith("tools/"): |
| 305 | continue |
| 306 | files.append(gitfile) |
| 307 | return files |
| 308 | |
| 309 | |
Valentin Rothberg | cf132e4 | 2015-04-29 16:58:27 +0200 | [diff] [blame] | 310 | def check_symbols(ignore): |
Valentin Rothberg | b1a3f24 | 2015-03-16 12:16:14 +0100 | [diff] [blame] | 311 | """Find undefined Kconfig symbols and return a dict with the symbol as key |
Valentin Rothberg | cf132e4 | 2015-04-29 16:58:27 +0200 | [diff] [blame] | 312 | and a list of referencing files as value. Files matching %ignore are not |
| 313 | checked for undefined symbols.""" |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 314 | pool = Pool(cpu_count(), init_worker) |
| 315 | try: |
| 316 | return check_symbols_helper(pool, ignore) |
| 317 | except KeyboardInterrupt: |
| 318 | pool.terminate() |
| 319 | pool.join() |
| 320 | sys.exit(1) |
| 321 | |
| 322 | |
| 323 | def check_symbols_helper(pool, ignore): |
| 324 | """Helper method for check_symbols(). Used to catch keyboard interrupts in |
| 325 | check_symbols() in order to properly terminate running worker processes.""" |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 326 | source_files = [] |
| 327 | kconfig_files = [] |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 328 | defined_symbols = [] |
| 329 | referenced_symbols = dict() # {file: [symbols]} |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 330 | |
Valentin Rothberg | 1b2c841 | 2015-11-26 14:17:15 +0100 | [diff] [blame] | 331 | for gitfile in get_files(): |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 332 | if REGEX_FILE_KCONFIG.match(gitfile): |
| 333 | kconfig_files.append(gitfile) |
| 334 | else: |
Ariel Marcovitch | 1439ebd | 2021-08-22 22:22:01 +0300 | [diff] [blame] | 335 | if ignore and re.match(ignore, gitfile): |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 336 | continue |
| 337 | # add source files that do not match the ignore pattern |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 338 | source_files.append(gitfile) |
| 339 | |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 340 | # parse source files |
| 341 | arglist = partition(source_files, cpu_count()) |
| 342 | for res in pool.map(parse_source_files, arglist): |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 343 | referenced_symbols.update(res) |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 344 | |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 345 | # parse kconfig files |
| 346 | arglist = [] |
| 347 | for part in partition(kconfig_files, cpu_count()): |
| 348 | arglist.append((part, ignore)) |
| 349 | for res in pool.map(parse_kconfig_files, arglist): |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 350 | defined_symbols.extend(res[0]) |
| 351 | referenced_symbols.update(res[1]) |
| 352 | defined_symbols = set(defined_symbols) |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 353 | |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 354 | # inverse mapping of referenced_symbols to dict(symbol: [files]) |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 355 | inv_map = dict() |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 356 | for _file, symbols in referenced_symbols.items(): |
| 357 | for symbol in symbols: |
| 358 | inv_map[symbol] = inv_map.get(symbol, set()) |
| 359 | inv_map[symbol].add(_file) |
| 360 | referenced_symbols = inv_map |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 361 | |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 362 | undefined = {} # {symbol: [files]} |
| 363 | for symbol in sorted(referenced_symbols): |
Valentin Rothberg | cc641d55 | 2014-11-08 20:56:35 +0100 | [diff] [blame] | 364 | # filter some false positives |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 365 | if symbol == "FOO" or symbol == "BAR" or \ |
| 366 | symbol == "FOO_BAR" or symbol == "XXX": |
Valentin Rothberg | cc641d55 | 2014-11-08 20:56:35 +0100 | [diff] [blame] | 367 | continue |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 368 | if symbol not in defined_symbols: |
| 369 | if symbol.endswith("_MODULE"): |
Valentin Rothberg | cc641d55 | 2014-11-08 20:56:35 +0100 | [diff] [blame] | 370 | # avoid false positives for kernel modules |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 371 | if symbol[:-len("_MODULE")] in defined_symbols: |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 372 | continue |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 373 | undefined[symbol] = referenced_symbols.get(symbol) |
| 374 | return undefined, defined_symbols |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 375 | |
| 376 | |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 377 | def parse_source_files(source_files): |
| 378 | """Parse each source file in @source_files and return dictionary with source |
| 379 | files as keys and lists of references Kconfig symbols as values.""" |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 380 | referenced_symbols = dict() |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 381 | for sfile in source_files: |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 382 | referenced_symbols[sfile] = parse_source_file(sfile) |
| 383 | return referenced_symbols |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 384 | |
| 385 | |
| 386 | def parse_source_file(sfile): |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 387 | """Parse @sfile and return a list of referenced Kconfig symbols.""" |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 388 | lines = [] |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 389 | references = [] |
| 390 | |
| 391 | if not os.path.exists(sfile): |
| 392 | return references |
| 393 | |
Valentin Rothberg | 7c5227a | 2016-08-28 08:51:28 +0200 | [diff] [blame] | 394 | with open(sfile, "r", encoding='utf-8', errors='replace') as stream: |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 395 | lines = stream.readlines() |
| 396 | |
| 397 | for line in lines: |
Valentin Rothberg | 36c79c7f | 2016-08-28 08:51:30 +0200 | [diff] [blame] | 398 | if "CONFIG_" not in line: |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 399 | continue |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 400 | symbols = REGEX_SOURCE_SYMBOL.findall(line) |
| 401 | for symbol in symbols: |
| 402 | if not REGEX_FILTER_SYMBOLS.search(symbol): |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 403 | continue |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 404 | references.append(symbol) |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 405 | |
| 406 | return references |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 407 | |
| 408 | |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 409 | def get_symbols_in_line(line): |
| 410 | """Return mentioned Kconfig symbols in @line.""" |
| 411 | return REGEX_SYMBOL.findall(line) |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 412 | |
| 413 | |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 414 | def parse_kconfig_files(args): |
| 415 | """Parse kconfig files and return tuple of defined and references Kconfig |
| 416 | symbols. Note, @args is a tuple of a list of files and the @ignore |
| 417 | pattern.""" |
| 418 | kconfig_files = args[0] |
| 419 | ignore = args[1] |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 420 | defined_symbols = [] |
| 421 | referenced_symbols = dict() |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 422 | |
| 423 | for kfile in kconfig_files: |
| 424 | defined, references = parse_kconfig_file(kfile) |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 425 | defined_symbols.extend(defined) |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 426 | if ignore and re.match(ignore, kfile): |
| 427 | # do not collect references for files that match the ignore pattern |
| 428 | continue |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 429 | referenced_symbols[kfile] = references |
| 430 | return (defined_symbols, referenced_symbols) |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 431 | |
| 432 | |
| 433 | def parse_kconfig_file(kfile): |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 434 | """Parse @kfile and update symbol definitions and references.""" |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 435 | lines = [] |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 436 | defined = [] |
| 437 | references = [] |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 438 | skip = False |
| 439 | |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 440 | if not os.path.exists(kfile): |
| 441 | return defined, references |
| 442 | |
Valentin Rothberg | 7c5227a | 2016-08-28 08:51:28 +0200 | [diff] [blame] | 443 | with open(kfile, "r", encoding='utf-8', errors='replace') as stream: |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 444 | lines = stream.readlines() |
| 445 | |
| 446 | for i in range(len(lines)): |
| 447 | line = lines[i] |
| 448 | line = line.strip('\n') |
Valentin Rothberg | cc641d55 | 2014-11-08 20:56:35 +0100 | [diff] [blame] | 449 | line = line.split("#")[0] # ignore comments |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 450 | |
| 451 | if REGEX_KCONFIG_DEF.match(line): |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 452 | symbol_def = REGEX_KCONFIG_DEF.findall(line) |
| 453 | defined.append(symbol_def[0]) |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 454 | skip = False |
| 455 | elif REGEX_KCONFIG_HELP.match(line): |
| 456 | skip = True |
| 457 | elif skip: |
Valentin Rothberg | cc641d55 | 2014-11-08 20:56:35 +0100 | [diff] [blame] | 458 | # ignore content of help messages |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 459 | pass |
| 460 | elif REGEX_KCONFIG_STMT.match(line): |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 461 | line = REGEX_QUOTES.sub("", line) |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 462 | symbols = get_symbols_in_line(line) |
Valentin Rothberg | cc641d55 | 2014-11-08 20:56:35 +0100 | [diff] [blame] | 463 | # multi-line statements |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 464 | while line.endswith("\\"): |
| 465 | i += 1 |
| 466 | line = lines[i] |
| 467 | line = line.strip('\n') |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 468 | symbols.extend(get_symbols_in_line(line)) |
| 469 | for symbol in set(symbols): |
| 470 | if REGEX_NUMERIC.match(symbol): |
Valentin Rothberg | 0bd38ae | 2015-07-27 12:33:05 +0200 | [diff] [blame] | 471 | # ignore numeric values |
| 472 | continue |
Valentin Rothberg | ef3f554 | 2016-08-28 08:51:31 +0200 | [diff] [blame] | 473 | references.append(symbol) |
Valentin Rothberg | e2042a8 | 2015-10-15 10:37:47 +0200 | [diff] [blame] | 474 | |
| 475 | return defined, references |
Valentin Rothberg | 24fe1f0 | 2014-09-27 16:30:45 +0200 | [diff] [blame] | 476 | |
| 477 | |
| 478 | if __name__ == "__main__": |
| 479 | main() |