blob: e45f17be881720c142a1b66c1c56b15e0d033e5a [file] [log] [blame]
Tom Roederb3020462018-12-18 14:49:07 -08001#!/usr/bin/env python
2# SPDX-License-Identifier: GPL-2.0
3#
4# Copyright (C) Google LLC, 2018
5#
6# Author: Tom Roeder <tmroeder@google.com>
7#
8"""A tool for generating compile_commands.json in the Linux kernel."""
9
10import argparse
11import json
12import logging
13import os
14import re
15
16_DEFAULT_OUTPUT = 'compile_commands.json'
17_DEFAULT_LOG_LEVEL = 'WARNING'
18
19_FILENAME_PATTERN = r'^\..*\.cmd$'
20_LINE_PATTERN = r'^cmd_[^ ]*\.o := (.* )([^ ]*\.c)$'
21_VALID_LOG_LEVELS = ['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL']
22
23# A kernel build generally has over 2000 entries in its compile_commands.json
Masahiro Yamadacb369552019-07-27 12:01:10 +090024# database. If this code finds 300 or fewer, then warn the user that they might
Tom Roederb3020462018-12-18 14:49:07 -080025# not have all the .cmd files, and they might need to compile the kernel.
Masahiro Yamadacb369552019-07-27 12:01:10 +090026_LOW_COUNT_THRESHOLD = 300
Tom Roederb3020462018-12-18 14:49:07 -080027
28
29def parse_arguments():
30 """Sets up and parses command-line arguments.
31
32 Returns:
33 log_level: A logging level to filter log output.
Masahiro Yamada0a7d3762020-08-22 23:56:12 +090034 directory: The work directory where the objects were built.
Tom Roederb3020462018-12-18 14:49:07 -080035 output: Where to write the compile-commands JSON file.
Masahiro Yamadafc2cb222020-08-22 23:56:14 +090036 paths: The list of directories to handle to find .cmd files.
Tom Roederb3020462018-12-18 14:49:07 -080037 """
38 usage = 'Creates a compile_commands.json database from kernel .cmd files'
39 parser = argparse.ArgumentParser(description=usage)
40
Masahiro Yamada0a7d3762020-08-22 23:56:12 +090041 directory_help = ('specify the output directory used for the kernel build '
Tom Roederb3020462018-12-18 14:49:07 -080042 '(defaults to the working directory)')
Masahiro Yamada6fca36f2020-08-22 23:56:13 +090043 parser.add_argument('-d', '--directory', type=str, default='.',
44 help=directory_help)
Tom Roederb3020462018-12-18 14:49:07 -080045
Masahiro Yamada6fca36f2020-08-22 23:56:13 +090046 output_help = ('path to the output command database (defaults to ' +
47 _DEFAULT_OUTPUT + ')')
48 parser.add_argument('-o', '--output', type=str, default=_DEFAULT_OUTPUT,
49 help=output_help)
Tom Roederb3020462018-12-18 14:49:07 -080050
Masahiro Yamadaea6cedc2020-08-22 23:56:10 +090051 log_level_help = ('the level of log messages to produce (defaults to ' +
Tom Roederb3020462018-12-18 14:49:07 -080052 _DEFAULT_LOG_LEVEL + ')')
Masahiro Yamadaea6cedc2020-08-22 23:56:10 +090053 parser.add_argument('--log_level', choices=_VALID_LOG_LEVELS,
54 default=_DEFAULT_LOG_LEVEL, help=log_level_help)
Tom Roederb3020462018-12-18 14:49:07 -080055
56 args = parser.parse_args()
57
Masahiro Yamada6fca36f2020-08-22 23:56:13 +090058 return (args.log_level,
59 os.path.abspath(args.directory),
Masahiro Yamadafc2cb222020-08-22 23:56:14 +090060 args.output,
61 [args.directory])
62
63
64def cmdfiles_in_dir(directory):
65 """Generate the iterator of .cmd files found under the directory.
66
67 Walk under the given directory, and yield every .cmd file found.
68
69 Args:
70 directory: The directory to search for .cmd files.
71
72 Yields:
73 The path to a .cmd file.
74 """
75
76 filename_matcher = re.compile(_FILENAME_PATTERN)
77
78 for dirpath, _, filenames in os.walk(directory):
79 for filename in filenames:
80 if filename_matcher.match(filename):
81 yield os.path.join(dirpath, filename)
Tom Roederb3020462018-12-18 14:49:07 -080082
83
Masahiro Yamada6ca4c6d2020-08-22 23:56:11 +090084def process_line(root_directory, command_prefix, file_path):
Tom Roederb3020462018-12-18 14:49:07 -080085 """Extracts information from a .cmd line and creates an entry from it.
86
87 Args:
88 root_directory: The directory that was searched for .cmd files. Usually
89 used directly in the "directory" entry in compile_commands.json.
Tom Roederb3020462018-12-18 14:49:07 -080090 command_prefix: The extracted command line, up to the last element.
Masahiro Yamada6ca4c6d2020-08-22 23:56:11 +090091 file_path: The .c file from the end of the extracted command.
92 Usually relative to root_directory, but sometimes absolute.
Tom Roederb3020462018-12-18 14:49:07 -080093
94 Returns:
95 An entry to append to compile_commands.
96
97 Raises:
Masahiro Yamada6ca4c6d2020-08-22 23:56:11 +090098 ValueError: Could not find the extracted file based on file_path and
Tom Roederb3020462018-12-18 14:49:07 -080099 root_directory or file_directory.
100 """
101 # The .cmd files are intended to be included directly by Make, so they
102 # escape the pound sign '#', either as '\#' or '$(pound)' (depending on the
103 # kernel version). The compile_commands.json file is not interepreted
104 # by Make, so this code replaces the escaped version with '#'.
105 prefix = command_prefix.replace('\#', '#').replace('$(pound)', '#')
106
Masahiro Yamada6ca4c6d2020-08-22 23:56:11 +0900107 # Use os.path.abspath() to normalize the path resolving '.' and '..' .
108 abs_path = os.path.abspath(os.path.join(root_directory, file_path))
109 if not os.path.exists(abs_path):
110 raise ValueError('File %s not found' % abs_path)
Tom Roederb3020462018-12-18 14:49:07 -0800111 return {
Masahiro Yamada6ca4c6d2020-08-22 23:56:11 +0900112 'directory': root_directory,
113 'file': abs_path,
114 'command': prefix + file_path,
Tom Roederb3020462018-12-18 14:49:07 -0800115 }
116
117
118def main():
119 """Walks through the directory and finds and parses .cmd files."""
Masahiro Yamadafc2cb222020-08-22 23:56:14 +0900120 log_level, directory, output, paths = parse_arguments()
Tom Roederb3020462018-12-18 14:49:07 -0800121
122 level = getattr(logging, log_level)
123 logging.basicConfig(format='%(levelname)s: %(message)s', level=level)
124
Tom Roederb3020462018-12-18 14:49:07 -0800125 line_matcher = re.compile(_LINE_PATTERN)
126
127 compile_commands = []
Tom Roederb3020462018-12-18 14:49:07 -0800128
Masahiro Yamadafc2cb222020-08-22 23:56:14 +0900129 for path in paths:
130 cmdfiles = cmdfiles_in_dir(path)
131
132 for cmdfile in cmdfiles:
133 with open(cmdfile, 'rt') as f:
Masahiro Yamada8a685db2020-08-22 23:56:09 +0900134 result = line_matcher.match(f.readline())
135 if result:
Tom Roederb3020462018-12-18 14:49:07 -0800136 try:
Masahiro Yamadafc2cb222020-08-22 23:56:14 +0900137 entry = process_line(directory, result.group(1),
138 result.group(2))
Tom Roederb3020462018-12-18 14:49:07 -0800139 compile_commands.append(entry)
140 except ValueError as err:
141 logging.info('Could not add line from %s: %s',
Masahiro Yamadafc2cb222020-08-22 23:56:14 +0900142 cmdfile, err)
Tom Roederb3020462018-12-18 14:49:07 -0800143
144 with open(output, 'wt') as f:
145 json.dump(compile_commands, f, indent=2, sort_keys=True)
146
147 count = len(compile_commands)
148 if count < _LOW_COUNT_THRESHOLD:
149 logging.warning(
150 'Found %s entries. Have you compiled the kernel?', count)
151
152
153if __name__ == '__main__':
154 main()