uio: Request/free irq separate from dev lifecycle
[deliverable/linux.git] / scripts / checkkconfigsymbols.py
CommitLineData
24fe1f03
VR
1#!/usr/bin/env python
2
b1a3f243 3"""Find Kconfig symbols that are referenced but not defined."""
24fe1f03 4
208d5115 5# (c) 2014-2015 Valentin Rothberg <Valentin.Rothberg@lip6.fr>
cc641d55 6# (c) 2014 Stefan Hengelein <stefan.hengelein@fau.de>
24fe1f03 7#
cc641d55 8# Licensed under the terms of the GNU GPL License version 2
24fe1f03
VR
9
10
11import os
12import re
b1a3f243 13import sys
24fe1f03 14from subprocess import Popen, PIPE, STDOUT
b1a3f243 15from optparse import OptionParser
24fe1f03 16
cc641d55
VR
17
18# regex expressions
24fe1f03 19OPERATORS = r"&|\(|\)|\||\!"
cc641d55
VR
20FEATURE = r"(?:\w*[A-Z0-9]\w*){2,}"
21DEF = r"^\s*(?:menu){,1}config\s+(" + FEATURE + r")\s*"
24fe1f03
VR
22EXPR = r"(?:" + OPERATORS + r"|\s|" + FEATURE + r")+"
23STMT = r"^\s*(?:if|select|depends\s+on)\s+" + EXPR
cc641d55 24SOURCE_FEATURE = r"(?:\W|\b)+[D]{,1}CONFIG_(" + FEATURE + r")"
24fe1f03 25
cc641d55 26# regex objects
24fe1f03
VR
27REGEX_FILE_KCONFIG = re.compile(r".*Kconfig[\.\w+\-]*$")
28REGEX_FEATURE = re.compile(r"(" + FEATURE + r")")
cc641d55
VR
29REGEX_SOURCE_FEATURE = re.compile(SOURCE_FEATURE)
30REGEX_KCONFIG_DEF = re.compile(DEF)
24fe1f03
VR
31REGEX_KCONFIG_EXPR = re.compile(EXPR)
32REGEX_KCONFIG_STMT = re.compile(STMT)
33REGEX_KCONFIG_HELP = re.compile(r"^\s+(help|---help---)\s*$")
34REGEX_FILTER_FEATURES = re.compile(r"[A-Za-z0-9]$")
35
36
b1a3f243
VR
37def parse_options():
38 """The user interface of this module."""
39 usage = "%prog [options]\n\n" \
40 "Run this tool to detect Kconfig symbols that are referenced but " \
41 "not defined in\nKconfig. The output of this tool has the " \
42 "format \'Undefined symbol\\tFile list\'\n\n" \
43 "If no option is specified, %prog will default to check your\n" \
44 "current tree. Please note that specifying commits will " \
45 "\'git reset --hard\'\nyour current tree! You may save " \
46 "uncommitted changes to avoid losing data."
47
48 parser = OptionParser(usage=usage)
49
50 parser.add_option('-c', '--commit', dest='commit', action='store',
51 default="",
52 help="Check if the specified commit (hash) introduces "
53 "undefined Kconfig symbols.")
54
55 parser.add_option('-d', '--diff', dest='diff', action='store',
56 default="",
57 help="Diff undefined symbols between two commits. The "
58 "input format bases on Git log's "
59 "\'commmit1..commit2\'.")
60
61 parser.add_option('', '--force', dest='force', action='store_true',
62 default=False,
63 help="Reset current Git tree even when it's dirty.")
64
65 (opts, _) = parser.parse_args()
66
67 if opts.commit and opts.diff:
68 sys.exit("Please specify only one option at once.")
69
70 if opts.diff and not re.match(r"^[\w\-\.]+\.\.[\w\-\.]+$", opts.diff):
71 sys.exit("Please specify valid input in the following format: "
72 "\'commmit1..commit2\'")
73
74 if opts.commit or opts.diff:
75 if not opts.force and tree_is_dirty():
76 sys.exit("The current Git tree is dirty (see 'git status'). "
77 "Running this script may\ndelete important data since it "
78 "calls 'git reset --hard' for some performance\nreasons. "
79 " Please run this script in a clean Git tree or pass "
80 "'--force' if you\nwant to ignore this warning and "
81 "continue.")
82
83 return opts
84
85
24fe1f03
VR
86def main():
87 """Main function of this module."""
b1a3f243
VR
88 opts = parse_options()
89
90 if opts.commit or opts.diff:
91 head = get_head()
92
93 # get commit range
94 commit_a = None
95 commit_b = None
96 if opts.commit:
97 commit_a = opts.commit + "~"
98 commit_b = opts.commit
99 elif opts.diff:
100 split = opts.diff.split("..")
101 commit_a = split[0]
102 commit_b = split[1]
103 undefined_a = {}
104 undefined_b = {}
105
106 # get undefined items before the commit
107 execute("git reset --hard %s" % commit_a)
108 undefined_a = check_symbols()
109
110 # get undefined items for the commit
111 execute("git reset --hard %s" % commit_b)
112 undefined_b = check_symbols()
113
114 # report cases that are present for the commit but not before
115 for feature in undefined_b:
116 # feature has not been undefined before
117 if not feature in undefined_a:
118 files = undefined_b.get(feature)
119 print "%s\t%s" % (feature, ", ".join(files))
120 # check if there are new files that reference the undefined feature
121 else:
122 files = undefined_b.get(feature) - undefined_a.get(feature)
123 if files:
124 print "%s\t%s" % (feature, ", ".join(files))
125
126 # reset to head
127 execute("git reset --hard %s" % head)
128
129 # default to check the entire tree
130 else:
131 undefined = check_symbols()
132 for feature in undefined:
133 files = undefined.get(feature)
134
135
136def execute(cmd):
137 """Execute %cmd and return stdout. Exit in case of error."""
138 pop = Popen(cmd, stdout=PIPE, stderr=STDOUT, shell=True)
139 (stdout, _) = pop.communicate() # wait until finished
140 if pop.returncode != 0:
141 sys.exit(stdout)
142 return stdout
143
144
145def tree_is_dirty():
146 """Return true if the current working tree is dirty (i.e., if any file has
147 been added, deleted, modified, renamed or copied but not committed)."""
148 stdout = execute("git status --porcelain")
149 for line in stdout:
150 if re.findall(r"[URMADC]{1}", line[:2]):
151 return True
152 return False
153
154
155def get_head():
156 """Return commit hash of current HEAD."""
157 stdout = execute("git rev-parse HEAD")
158 return stdout.strip('\n')
159
160
161def check_symbols():
162 """Find undefined Kconfig symbols and return a dict with the symbol as key
163 and a list of referencing files as value."""
24fe1f03
VR
164 source_files = []
165 kconfig_files = []
166 defined_features = set()
cc641d55 167 referenced_features = dict() # {feature: [files]}
24fe1f03
VR
168
169 # use 'git ls-files' to get the worklist
b1a3f243 170 stdout = execute("git ls-files")
24fe1f03
VR
171 if len(stdout) > 0 and stdout[-1] == "\n":
172 stdout = stdout[:-1]
173
174 for gitfile in stdout.rsplit("\n"):
208d5115
VR
175 if ".git" in gitfile or "ChangeLog" in gitfile or \
176 ".log" in gitfile or os.path.isdir(gitfile) or \
177 gitfile.startswith("tools/"):
24fe1f03
VR
178 continue
179 if REGEX_FILE_KCONFIG.match(gitfile):
180 kconfig_files.append(gitfile)
181 else:
cc641d55 182 # all non-Kconfig files are checked for consistency
24fe1f03
VR
183 source_files.append(gitfile)
184
185 for sfile in source_files:
186 parse_source_file(sfile, referenced_features)
187
188 for kfile in kconfig_files:
189 parse_kconfig_file(kfile, defined_features, referenced_features)
190
b1a3f243 191 undefined = {} # {feature: [files]}
24fe1f03 192 for feature in sorted(referenced_features):
cc641d55
VR
193 # filter some false positives
194 if feature == "FOO" or feature == "BAR" or \
195 feature == "FOO_BAR" or feature == "XXX":
196 continue
24fe1f03
VR
197 if feature not in defined_features:
198 if feature.endswith("_MODULE"):
cc641d55 199 # avoid false positives for kernel modules
24fe1f03
VR
200 if feature[:-len("_MODULE")] in defined_features:
201 continue
b1a3f243
VR
202 undefined[feature] = referenced_features.get(feature)
203 return undefined
24fe1f03
VR
204
205
206def parse_source_file(sfile, referenced_features):
207 """Parse @sfile for referenced Kconfig features."""
208 lines = []
209 with open(sfile, "r") as stream:
210 lines = stream.readlines()
211
212 for line in lines:
213 if not "CONFIG_" in line:
214 continue
215 features = REGEX_SOURCE_FEATURE.findall(line)
216 for feature in features:
217 if not REGEX_FILTER_FEATURES.search(feature):
218 continue
cc641d55
VR
219 sfiles = referenced_features.get(feature, set())
220 sfiles.add(sfile)
221 referenced_features[feature] = sfiles
24fe1f03
VR
222
223
224def get_features_in_line(line):
225 """Return mentioned Kconfig features in @line."""
226 return REGEX_FEATURE.findall(line)
227
228
229def parse_kconfig_file(kfile, defined_features, referenced_features):
230 """Parse @kfile and update feature definitions and references."""
231 lines = []
232 skip = False
233
234 with open(kfile, "r") as stream:
235 lines = stream.readlines()
236
237 for i in range(len(lines)):
238 line = lines[i]
239 line = line.strip('\n')
cc641d55 240 line = line.split("#")[0] # ignore comments
24fe1f03
VR
241
242 if REGEX_KCONFIG_DEF.match(line):
243 feature_def = REGEX_KCONFIG_DEF.findall(line)
244 defined_features.add(feature_def[0])
245 skip = False
246 elif REGEX_KCONFIG_HELP.match(line):
247 skip = True
248 elif skip:
cc641d55 249 # ignore content of help messages
24fe1f03
VR
250 pass
251 elif REGEX_KCONFIG_STMT.match(line):
252 features = get_features_in_line(line)
cc641d55 253 # multi-line statements
24fe1f03
VR
254 while line.endswith("\\"):
255 i += 1
256 line = lines[i]
257 line = line.strip('\n')
258 features.extend(get_features_in_line(line))
259 for feature in set(features):
260 paths = referenced_features.get(feature, set())
261 paths.add(kfile)
262 referenced_features[feature] = paths
263
264
265if __name__ == "__main__":
266 main()
This page took 0.04717 seconds and 5 git commands to generate.