blob: 2917f17641d7c7c95d5a3172b4bf79ca1bbaa557 [file] [log] [blame]
Mike Frysinger4f994402019-09-13 17:40:45 -04001#!/usr/bin/env python3
Mike Frysingerb7d552e2017-11-23 11:50:47 -05002# -*- coding: utf-8 -*-
Jon Salz98255932012-08-18 14:48:02 +08003# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Mandeep Singh Baines116ad102011-04-27 15:16:37 -07004# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
Mike Frysingerae409522014-02-01 03:16:11 -05007"""Presubmit checks to run when doing `repo upload`.
8
9You can add new checks by adding a functions to the HOOKS constants.
10"""
11
Mike Frysinger09d6a3d2013-10-08 22:21:03 -040012from __future__ import print_function
13
Keigo Okadd908822019-06-04 11:30:25 +090014import argparse
Alex Deymo643ac4c2015-09-03 10:40:50 -070015import collections
Keigo Oka7e880ac2019-07-03 15:03:43 +090016import datetime
Daniel Erate3ea3fc2015-02-13 15:27:52 -070017import fnmatch
Jon Salz3ee59de2012-08-18 13:54:22 +080018import functools
Mike Frysinger13302d42019-09-13 17:21:24 -040019import io
Dale Curtis2975c432011-05-03 17:25:20 -070020import json
Mandeep Singh Baines116ad102011-04-27 15:16:37 -070021import os
Ryan Cuiec4d6332011-05-02 14:15:25 -070022import re
Mandeep Singh Bainesa7ffa4b2011-05-03 11:37:02 -070023import sys
Peter Ammon811f6702014-06-12 15:45:38 -070024import stat
Mandeep Singh Baines116ad102011-04-27 15:16:37 -070025
Mike Frysinger7bfc89f2019-09-13 15:45:51 -040026from six.moves import configparser
27
Ryan Cui1562fb82011-05-09 11:01:31 -070028from errors import (VerifyException, HookFailure, PrintErrorForProject,
29 PrintErrorsForCommit)
Ryan Cuiec4d6332011-05-02 14:15:25 -070030
Mike Frysinger919c7032019-09-13 17:48:08 -040031if __name__ in ('__builtin__', 'builtins'):
Mike Frysinger653cd262019-09-20 14:05:02 -040032 # If repo imports us, the __name__ will be __builtin__, and the cwd will be in
33 # the top level of the checkout (i.e. $CHROMEOS_CHECKOUT). chromite will be
34 # in that directory, so add it to our path. This works whether we're running
35 # the repo in $CHROMEOS_CHECKOUT/.repo/repo/ or a custom version in a
36 # completely different tree.
37 # TODO(vapier): Python 2 used "__builtin__" while Python 3 uses "builtins".
Mike Frysinger6850d512018-05-21 12:12:14 -040038 sys.path.insert(0, os.getcwd())
39
Mike Frysinger653cd262019-09-20 14:05:02 -040040elif __name__ == '__main__':
41 # If we're run directly, we'll find chromite relative to the repohooks dir in
42 # $CHROMEOS_CHECKOUT/src/repohooks, so go up two dirs.
David Jamesc3b68b32013-04-03 09:17:03 -070043 sys.path.insert(0, os.path.join(os.path.dirname(sys.argv[0]), '..', '..'))
44
Mike Frysingerfd481ce2019-09-13 18:14:48 -040045# The sys.path monkey patching confuses the linter.
46# pylint: disable=wrong-import-position
Mike Frysinger66142932014-12-18 14:55:57 -050047from chromite.lib import commandline
Aviv Keshet5ac59522017-01-31 14:28:27 -080048from chromite.lib import constants
Rahul Chaudhry0e515342015-08-07 12:00:43 -070049from chromite.lib import cros_build_lib
Mike Frysingerd3bd32c2014-11-24 23:34:29 -050050from chromite.lib import git
Daniel Erata350fd32014-09-29 14:02:34 -070051from chromite.lib import osutils
David Jamesc3b68b32013-04-03 09:17:03 -070052from chromite.lib import patch
Mike Frysinger2ec70ed2014-08-17 19:28:34 -040053from chromite.licensing import licenses_lib
David Jamesc3b68b32013-04-03 09:17:03 -070054
Vadim Bendebury2b62d742014-06-22 13:14:51 -070055PRE_SUBMIT = 'pre-submit'
Ryan Cuiec4d6332011-05-02 14:15:25 -070056
57COMMON_INCLUDED_PATHS = [
Mike Frysingerae409522014-02-01 03:16:11 -050058 # C++ and friends
Mike Frysinger24dd3c52019-08-17 14:22:48 -040059 r'.*\.c$', r'.*\.cc$', r'.*\.cpp$', r'.*\.h$', r'.*\.m$', r'.*\.mm$',
60 r'.*\.inl$', r'.*\.asm$', r'.*\.hxx$', r'.*\.hpp$', r'.*\.s$', r'.*\.S$',
Mike Frysingerae409522014-02-01 03:16:11 -050061 # Scripts
Mike Frysinger24dd3c52019-08-17 14:22:48 -040062 r'.*\.js$', r'.*\.py$', r'.*\.sh$', r'.*\.rb$', r'.*\.pl$', r'.*\.pm$',
Mike Frysingerae409522014-02-01 03:16:11 -050063 # No extension at all, note that ALL CAPS files are black listed in
64 # COMMON_EXCLUDED_LIST below.
Mike Frysinger24dd3c52019-08-17 14:22:48 -040065 r'(^|.*[\\\/])[^.]+$',
Mike Frysingerae409522014-02-01 03:16:11 -050066 # Other
Mike Frysinger24dd3c52019-08-17 14:22:48 -040067 r'.*\.java$', r'.*\.mk$', r'.*\.am$',
68 r'.*\.policy$', r'.*\.conf$', r'.*\.go$',
69 r'(^OWNERS|/OWNERS)',
Ryan Cuiec4d6332011-05-02 14:15:25 -070070]
71
Ryan Cui1562fb82011-05-09 11:01:31 -070072
Ryan Cuiec4d6332011-05-02 14:15:25 -070073COMMON_EXCLUDED_PATHS = [
Daniel Erate3ea3fc2015-02-13 15:27:52 -070074 # For ebuild trees, ignore any caches and manifest data.
Mike Frysinger24dd3c52019-08-17 14:22:48 -040075 r'.*/Manifest$',
76 r'.*/metadata/[^/]*cache[^/]*/[^/]+/[^/]+$',
Doug Anderson5bfb6792011-10-25 16:45:41 -070077
Daniel Erate3ea3fc2015-02-13 15:27:52 -070078 # Ignore profiles data (like overlay-tegra2/profiles).
Mike Frysinger24dd3c52019-08-17 14:22:48 -040079 r'(^|.*/)overlay-.*/profiles/.*',
80 r'^profiles/.*$',
Mike Frysinger98638102014-08-28 00:15:08 -040081
C Shapiro8f90e9b2017-06-28 09:54:50 -060082 # Ignore config files in ebuild setup.
Mike Frysinger24dd3c52019-08-17 14:22:48 -040083 r'(^|.*/)overlay-.*/chromeos-base/chromeos-bsp.*/files/.*',
84 r'^chromeos-base/chromeos-bsp.*/files/.*',
C Shapiro8f90e9b2017-06-28 09:54:50 -060085
Daniel Erate3ea3fc2015-02-13 15:27:52 -070086 # Ignore minified js and jquery.
Mike Frysinger24dd3c52019-08-17 14:22:48 -040087 r'.*\.min\.js',
88 r'.*jquery.*\.js',
Mike Frysinger33a458d2014-03-03 17:00:51 -050089
90 # Ignore license files as the content is often taken verbatim.
Mike Frysinger24dd3c52019-08-17 14:22:48 -040091 r'.*/licenses/.*',
Alex Klein619c0912019-01-30 17:13:23 -070092
Mike Frysinger13650402019-07-31 14:31:46 -040093 # Exclude generated protobuf bindings.
Mike Frysinger24dd3c52019-08-17 14:22:48 -040094 r'.*_pb2\.py$',
95 r'.*\.pb\.go$',
Ryan Cuiec4d6332011-05-02 14:15:25 -070096]
Mandeep Singh Baines116ad102011-04-27 15:16:37 -070097
Ken Turnerd07564b2018-02-08 17:57:59 +110098LICENSE_EXCLUDED_PATHS = [
Mike Frysinger24dd3c52019-08-17 14:22:48 -040099 r'^(.*/)?OWNERS$',
Ken Turnerd07564b2018-02-08 17:57:59 +1100100]
Ryan Cui1562fb82011-05-09 11:01:31 -0700101
Ryan Cui9b651632011-05-11 11:38:58 -0700102_CONFIG_FILE = 'PRESUBMIT.cfg'
103
104
Daniel Erate3ea3fc2015-02-13 15:27:52 -0700105# File containing wildcards, one per line, matching files that should be
106# excluded from presubmit checks. Lines beginning with '#' are ignored.
107_IGNORE_FILE = '.presubmitignore'
108
Doug Anderson44a644f2011-11-02 10:37:37 -0700109# Exceptions
110
111
112class BadInvocation(Exception):
113 """An Exception indicating a bad invocation of the program."""
114 pass
115
116
Ryan Cui1562fb82011-05-09 11:01:31 -0700117# General Helpers
118
Sean Paulba01d402011-05-05 11:36:23 -0400119
Mike Frysingerb2496652019-09-12 23:35:46 -0400120class Cache(object):
121 """General helper for caching git content."""
122
123 def __init__(self):
124 self._cache = {}
125
126 def get_subcache(self, scope):
127 return self._cache.setdefault(scope, {})
128
129 def clear(self):
130 self._cache.clear()
131
132CACHE = Cache()
133
134
Alex Deymo643ac4c2015-09-03 10:40:50 -0700135Project = collections.namedtuple('Project', ['name', 'dir', 'remote'])
136
137
Mike Frysinger526a5f82019-09-13 18:05:30 -0400138def _run_command(cmd, **kwargs):
Doug Anderson44a644f2011-11-02 10:37:37 -0700139 """Executes the passed in command and returns raw stdout output.
140
Mike Frysinger7bb709f2019-09-29 23:20:12 -0400141 This is a convenience func to set some run defaults differently.
Mike Frysinger526a5f82019-09-13 18:05:30 -0400142
Doug Anderson44a644f2011-11-02 10:37:37 -0700143 Args:
144 cmd: The command to run; should be a list of strings.
Mike Frysinger7bb709f2019-09-29 23:20:12 -0400145 **kwargs: Same as cros_build_lib.run.
Doug Anderson44a644f2011-11-02 10:37:37 -0700146
147 Returns:
Rahul Chaudhry0e515342015-08-07 12:00:43 -0700148 The stdout from the process (discards stderr and returncode).
Doug Anderson44a644f2011-11-02 10:37:37 -0700149 """
Mike Frysinger526a5f82019-09-13 18:05:30 -0400150 kwargs.setdefault('print_cmd', False)
Mike Frysinger7bb709f2019-09-29 23:20:12 -0400151 kwargs.setdefault('stdout', True)
152 kwargs.setdefault('check', False)
Mike Frysinger71e643e2019-09-13 17:26:39 -0400153 result = cros_build_lib.RunCommand(cmd, **kwargs)
Mike Frysinger7bb709f2019-09-29 23:20:12 -0400154 # NB: We decode this directly rather than through kwargs as our tests rely
155 # on this post-processing behavior currently.
Mike Frysinger71e643e2019-09-13 17:26:39 -0400156 return result.output.decode('utf-8', 'replace')
Ryan Cui72834d12011-05-05 14:51:33 -0700157
Ryan Cui1562fb82011-05-09 11:01:31 -0700158
Mandeep Singh Baines116ad102011-04-27 15:16:37 -0700159def _get_hooks_dir():
Ryan Cuiec4d6332011-05-02 14:15:25 -0700160 """Returns the absolute path to the repohooks directory."""
Doug Anderson44a644f2011-11-02 10:37:37 -0700161 if __name__ == '__main__':
162 # Works when file is run on its own (__file__ is defined)...
163 return os.path.abspath(os.path.dirname(__file__))
164 else:
165 # We need to do this when we're run through repo. Since repo executes
166 # us with execfile(), we don't get __file__ defined.
167 cmd = ['repo', 'forall', 'chromiumos/repohooks', '-c', 'pwd']
168 return _run_command(cmd).strip()
Mandeep Singh Baines116ad102011-04-27 15:16:37 -0700169
Ryan Cui1562fb82011-05-09 11:01:31 -0700170
Ryan Cuiec4d6332011-05-02 14:15:25 -0700171def _match_regex_list(subject, expressions):
172 """Try to match a list of regular expressions to a string.
173
174 Args:
175 subject: The string to match regexes on
176 expressions: A list of regular expressions to check for matches with.
177
178 Returns:
179 Whether the passed in subject matches any of the passed in regexes.
180 """
181 for expr in expressions:
Mike Frysingerae409522014-02-01 03:16:11 -0500182 if re.search(expr, subject):
Ryan Cuiec4d6332011-05-02 14:15:25 -0700183 return True
184 return False
185
Ryan Cui1562fb82011-05-09 11:01:31 -0700186
Mike Frysingerae409522014-02-01 03:16:11 -0500187def _filter_files(files, include_list, exclude_list=()):
Ryan Cuiec4d6332011-05-02 14:15:25 -0700188 """Filter out files based on the conditions passed in.
189
190 Args:
191 files: list of filepaths to filter
192 include_list: list of regex that when matched with a file path will cause it
193 to be added to the output list unless the file is also matched with a
194 regex in the exclude_list.
195 exclude_list: list of regex that when matched with a file will prevent it
196 from being added to the output list, even if it is also matched with a
197 regex in the include_list.
198
199 Returns:
200 A list of filepaths that contain files matched in the include_list and not
201 in the exclude_list.
202 """
203 filtered = []
204 for f in files:
205 if (_match_regex_list(f, include_list) and
206 not _match_regex_list(f, exclude_list)):
207 filtered.append(f)
208 return filtered
209
Ryan Cuiec4d6332011-05-02 14:15:25 -0700210
211# Git Helpers
Ryan Cui1562fb82011-05-09 11:01:31 -0700212
213
Ryan Cui4725d952011-05-05 15:41:19 -0700214def _get_upstream_branch():
215 """Returns the upstream tracking branch of the current branch.
216
217 Raises:
218 Error if there is no tracking branch
219 """
220 current_branch = _run_command(['git', 'symbolic-ref', 'HEAD']).strip()
221 current_branch = current_branch.replace('refs/heads/', '')
222 if not current_branch:
Ryan Cui1562fb82011-05-09 11:01:31 -0700223 raise VerifyException('Need to be on a tracking branch')
Ryan Cui4725d952011-05-05 15:41:19 -0700224
225 cfg_option = 'branch.' + current_branch + '.%s'
226 full_upstream = _run_command(['git', 'config', cfg_option % 'merge']).strip()
227 remote = _run_command(['git', 'config', cfg_option % 'remote']).strip()
228 if not remote or not full_upstream:
Ryan Cui1562fb82011-05-09 11:01:31 -0700229 raise VerifyException('Need to be on a tracking branch')
Ryan Cui4725d952011-05-05 15:41:19 -0700230
231 return full_upstream.replace('heads', 'remotes/' + remote)
232
Ryan Cui1562fb82011-05-09 11:01:31 -0700233
Che-Liang Chiou5ce2d7b2013-03-22 18:47:55 -0700234def _get_patch(commit):
235 """Returns the patch for this commit."""
Vadim Bendebury2b62d742014-06-22 13:14:51 -0700236 if commit == PRE_SUBMIT:
237 return _run_command(['git', 'diff', '--cached', 'HEAD'])
238 else:
239 return _run_command(['git', 'format-patch', '--stdout', '-1', commit])
Mandeep Singh Baines116ad102011-04-27 15:16:37 -0700240
Ryan Cui1562fb82011-05-09 11:01:31 -0700241
Mike Frysingerbf8b91c2014-02-01 02:50:27 -0500242def _get_file_content(path, commit):
243 """Returns the content of a file at a specific commit.
244
245 We can't rely on the file as it exists in the filesystem as people might be
246 uploading a series of changes which modifies the file multiple times.
247
248 Note: The "content" of a symlink is just the target. So if you're expecting
249 a full file, you should check that first. One way to detect is that the
250 content will not have any newlines.
251 """
Mike Frysingerb2496652019-09-12 23:35:46 -0400252 # Make sure people don't accidentally pass in full paths which will never
253 # work. You need to use relative=True with _get_affected_files.
254 if path.startswith('/'):
255 raise ValueError('_get_file_content must be called with relative paths: %s'
256 % (path,))
257
258 # {<commit>: {<path1>: <content>, <path2>: <content>}}
259 cache = CACHE.get_subcache('get_file_content')
260 if path in cache:
261 return cache[path]
262
Vadim Bendebury2b62d742014-06-22 13:14:51 -0700263 if commit == PRE_SUBMIT:
Mike Frysingerb2496652019-09-12 23:35:46 -0400264 content = _run_command(['git', 'diff', 'HEAD', path])
Vadim Bendebury2b62d742014-06-22 13:14:51 -0700265 else:
Mike Frysingerb2496652019-09-12 23:35:46 -0400266 content = _run_command(['git', 'show', '%s:%s' % (commit, path)])
267 cache[path] = content
268 return content
Mike Frysingerbf8b91c2014-02-01 02:50:27 -0500269
270
Mike Frysingerae409522014-02-01 03:16:11 -0500271def _get_file_diff(path, commit):
Ryan Cuiec4d6332011-05-02 14:15:25 -0700272 """Returns a list of (linenum, lines) tuples that the commit touched."""
Mike Frysingerb2496652019-09-12 23:35:46 -0400273 # {<commit>: {<path1>: <content>, <path2>: <content>}}
274 cache = CACHE.get_subcache('get_file_diff')
275 if path in cache:
276 return cache[path]
277
Vadim Bendebury2b62d742014-06-22 13:14:51 -0700278 if commit == PRE_SUBMIT:
Prathmesh Prabhua9de1722016-12-22 14:56:40 -0800279 command = ['git', 'diff', '-p', '--pretty=format:', '--no-ext-diff', 'HEAD',
280 path]
Vadim Bendebury2b62d742014-06-22 13:14:51 -0700281 else:
Prathmesh Prabhua9de1722016-12-22 14:56:40 -0800282 command = ['git', 'show', '-p', '--pretty=format:', '--no-ext-diff', commit,
283 path]
Vadim Bendebury2b62d742014-06-22 13:14:51 -0700284 output = _run_command(command)
Ryan Cuiec4d6332011-05-02 14:15:25 -0700285
286 new_lines = []
287 line_num = 0
288 for line in output.splitlines():
289 m = re.match(r'^@@ [0-9\,\+\-]+ \+([0-9]+)\,[0-9]+ @@', line)
290 if m:
291 line_num = int(m.groups(1)[0])
292 continue
293 if line.startswith('+') and not line.startswith('++'):
Mike Frysinger71e643e2019-09-13 17:26:39 -0400294 new_lines.append((line_num, line[1:]))
Ryan Cuiec4d6332011-05-02 14:15:25 -0700295 if not line.startswith('-'):
296 line_num += 1
Mike Frysingerb2496652019-09-12 23:35:46 -0400297 cache[path] = new_lines
Ryan Cuiec4d6332011-05-02 14:15:25 -0700298 return new_lines
299
Ryan Cui1562fb82011-05-09 11:01:31 -0700300
Daniel Erate3ea3fc2015-02-13 15:27:52 -0700301def _get_ignore_wildcards(directory, cache):
302 """Get wildcards listed in a directory's _IGNORE_FILE.
303
304 Args:
305 directory: A string containing a directory path.
306 cache: A dictionary (opaque to caller) caching previously-read wildcards.
307
308 Returns:
309 A list of wildcards from _IGNORE_FILE or an empty list if _IGNORE_FILE
310 wasn't present.
311 """
312 # In the cache, keys are directories and values are lists of wildcards from
313 # _IGNORE_FILE within those directories (and empty if no file was present).
314 if directory not in cache:
315 wildcards = []
316 dotfile_path = os.path.join(directory, _IGNORE_FILE)
317 if os.path.exists(dotfile_path):
318 # TODO(derat): Consider using _get_file_content() to get the file as of
319 # this commit instead of the on-disk version. This may have a noticeable
320 # performance impact, as each call to _get_file_content() runs git.
321 with open(dotfile_path, 'r') as dotfile:
322 for line in dotfile.readlines():
323 line = line.strip()
324 if line.startswith('#'):
325 continue
326 if line.endswith('/'):
327 line += '*'
328 wildcards.append(line)
329 cache[directory] = wildcards
330
331 return cache[directory]
332
333
334def _path_is_ignored(path, cache):
335 """Check whether a path is ignored by _IGNORE_FILE.
336
337 Args:
338 path: A string containing a path.
339 cache: A dictionary (opaque to caller) caching previously-read wildcards.
340
341 Returns:
342 True if a file named _IGNORE_FILE in one of the passed-in path's parent
343 directories contains a wildcard matching the path.
344 """
345 # Skip ignore files.
346 if os.path.basename(path) == _IGNORE_FILE:
347 return True
348
349 path = os.path.abspath(path)
350 base = os.getcwd()
351
352 prefix = os.path.dirname(path)
353 while prefix.startswith(base):
354 rel_path = path[len(prefix) + 1:]
355 for wildcard in _get_ignore_wildcards(prefix, cache):
356 if fnmatch.fnmatch(rel_path, wildcard):
357 return True
358 prefix = os.path.dirname(prefix)
359
360 return False
361
362
Mike Frysinger292b45d2014-11-25 01:17:10 -0500363def _get_affected_files(commit, include_deletes=False, relative=False,
364 include_symlinks=False, include_adds=True,
Daniel Erate3ea3fc2015-02-13 15:27:52 -0700365 full_details=False, use_ignore_files=True):
Peter Ammon811f6702014-06-12 15:45:38 -0700366 """Returns list of file paths that were modified/added, excluding symlinks.
367
368 Args:
369 commit: The commit
370 include_deletes: If true, we'll include deleted files in the result
371 relative: Whether to return relative or full paths to files
Mike Frysinger292b45d2014-11-25 01:17:10 -0500372 include_symlinks: If true, we'll include symlinks in the result
373 include_adds: If true, we'll include new files in the result
374 full_details: If False, return filenames, else return structured results.
Daniel Erate3ea3fc2015-02-13 15:27:52 -0700375 use_ignore_files: Whether we ignore files matched by _IGNORE_FILE files.
Peter Ammon811f6702014-06-12 15:45:38 -0700376
377 Returns:
378 A list of modified/added (and perhaps deleted) files
379 """
Mike Frysinger292b45d2014-11-25 01:17:10 -0500380 if not relative and full_details:
381 raise ValueError('full_details only supports relative paths currently')
382
Vadim Bendebury2b62d742014-06-22 13:14:51 -0700383 if commit == PRE_SUBMIT:
384 return _run_command(['git', 'diff-index', '--cached',
385 '--name-only', 'HEAD']).split()
Mike Frysingerd3bd32c2014-11-24 23:34:29 -0500386
387 path = os.getcwd()
Mike Frysingerb2496652019-09-12 23:35:46 -0400388 # {<commit>: {<path1>: <content>, <path2>: <content>}}
389 cache = CACHE.get_subcache('get_affected_files')
390 if path not in cache:
391 cache[path] = git.RawDiff(path, '%s^!' % commit)
392 files = cache[path]
Mike Frysingerd3bd32c2014-11-24 23:34:29 -0500393
394 # Filter out symlinks.
Mike Frysinger292b45d2014-11-25 01:17:10 -0500395 if not include_symlinks:
396 files = [x for x in files if not stat.S_ISLNK(int(x.dst_mode, 8))]
Mike Frysingerd3bd32c2014-11-24 23:34:29 -0500397
398 if not include_deletes:
399 files = [x for x in files if x.status != 'D']
400
Mike Frysinger292b45d2014-11-25 01:17:10 -0500401 if not include_adds:
402 files = [x for x in files if x.status != 'A']
403
Daniel Erate3ea3fc2015-02-13 15:27:52 -0700404 if use_ignore_files:
405 cache = {}
406 is_ignored = lambda x: _path_is_ignored(x.dst_file or x.src_file, cache)
407 files = [x for x in files if not is_ignored(x)]
408
Mike Frysinger292b45d2014-11-25 01:17:10 -0500409 if full_details:
410 # Caller wants the raw objects to parse status/etc... themselves.
Mike Frysingerd3bd32c2014-11-24 23:34:29 -0500411 return files
412 else:
Mike Frysinger292b45d2014-11-25 01:17:10 -0500413 # Caller only cares about filenames.
414 files = [x.dst_file if x.dst_file else x.src_file for x in files]
415 if relative:
416 return files
417 else:
418 return [os.path.join(path, x) for x in files]
Peter Ammon811f6702014-06-12 15:45:38 -0700419
420
Mandeep Singh Bainesb9ed1402011-04-29 15:32:06 -0700421def _get_commits():
Ryan Cuiec4d6332011-05-02 14:15:25 -0700422 """Returns a list of commits for this review."""
Mike Frysingere300c7d2019-09-12 23:33:52 -0400423 cmd = ['git', 'log', '--no-merges', '--format=%H',
424 '%s..' % _get_upstream_branch()]
Ryan Cui72834d12011-05-05 14:51:33 -0700425 return _run_command(cmd).split()
Mandeep Singh Bainesb9ed1402011-04-29 15:32:06 -0700426
Ryan Cui1562fb82011-05-09 11:01:31 -0700427
Ryan Cuiec4d6332011-05-02 14:15:25 -0700428def _get_commit_desc(commit):
429 """Returns the full commit message of a commit."""
Vadim Bendebury2b62d742014-06-22 13:14:51 -0700430 if commit == PRE_SUBMIT:
431 return ''
Mike Frysingerb2496652019-09-12 23:35:46 -0400432
433 # {<commit>: <content>}
434 cache = CACHE.get_subcache('get_commit_desc')
435 if commit not in cache:
Mike Frysinger4efdee72019-11-04 10:57:01 -0500436 cache[commit] = _run_command(['git', 'log', '--format=%B',
Mike Frysingerb2496652019-09-12 23:35:46 -0400437 commit + '^!'])
438 return cache[commit]
Ryan Cuiec4d6332011-05-02 14:15:25 -0700439
440
Prathmesh Prabhuc5254652016-12-22 12:58:05 -0800441def _check_lines_in_diff(commit, files, check_callable, error_description):
442 """Checks given file for errors via the given check.
443
444 This is a convenience function for common per-line checks. It goes through all
445 files and returns a HookFailure with the error description listing all the
446 failures.
447
448 Args:
449 commit: The commit we're working on.
450 files: The files to check.
451 check_callable: A callable that takes a line and returns True if this line
452 _fails_ the check.
453 error_description: A string describing the error.
454 """
455 errors = []
456 for afile in files:
457 for line_num, line in _get_file_diff(afile, commit):
458 if check_callable(line):
459 errors.append('%s, line %s' % (afile, line_num))
460 if errors:
461 return HookFailure(error_description, errors)
Mike Frysinger8cf80812019-09-16 23:49:29 -0400462 return None
Prathmesh Prabhuc5254652016-12-22 12:58:05 -0800463
464
Shuhei Takahashiabc20f32017-07-10 19:35:45 +0900465def _parse_common_inclusion_options(options):
466 """Parses common hook options for including/excluding files.
467
468 Args:
469 options: Option string list.
470
471 Returns:
472 (included, excluded) where each one is a list of regex strings.
473 """
474 parser = argparse.ArgumentParser()
475 parser.add_argument('--exclude_regex', action='append')
476 parser.add_argument('--include_regex', action='append')
477 opts = parser.parse_args(options)
478 included = opts.include_regex or []
479 excluded = opts.exclude_regex or []
480 return included, excluded
481
482
Ryan Cuiec4d6332011-05-02 14:15:25 -0700483# Common Hooks
484
Ryan Cui1562fb82011-05-09 11:01:31 -0700485
Shuhei Takahashiabc20f32017-07-10 19:35:45 +0900486def _check_no_long_lines(_project, commit, options=()):
Mike Frysinger55f85b52014-12-18 14:45:21 -0500487 """Checks there are no lines longer than MAX_LEN in any of the text files."""
Keigo Oka9732e382019-06-28 17:44:59 +0900488 LONG_LINE_OK_PATHS = [
489 # Go has no line length limit.
490 # https://golang.org/doc/effective_go.html#formatting
Mike Frysinger24dd3c52019-08-17 14:22:48 -0400491 r'.*\.go$',
Keigo Oka9732e382019-06-28 17:44:59 +0900492 ]
Mike Frysinger55f85b52014-12-18 14:45:21 -0500493
Ryan Cuiec4d6332011-05-02 14:15:25 -0700494 MAX_LEN = 80
495
Shuhei Takahashiabc20f32017-07-10 19:35:45 +0900496 included, excluded = _parse_common_inclusion_options(options)
Ryan Cuiec4d6332011-05-02 14:15:25 -0700497 files = _filter_files(_get_affected_files(commit),
Shuhei Takahashiabc20f32017-07-10 19:35:45 +0900498 included + COMMON_INCLUDED_PATHS,
Keigo Oka9732e382019-06-28 17:44:59 +0900499 excluded + COMMON_EXCLUDED_PATHS + LONG_LINE_OK_PATHS)
Ryan Cuiec4d6332011-05-02 14:15:25 -0700500
Shuhei Takahashiabc20f32017-07-10 19:35:45 +0900501 errors = []
Ryan Cuiec4d6332011-05-02 14:15:25 -0700502 for afile in files:
George Burgess IVf9f79eb2019-07-09 20:12:55 -0700503 skip_regexps = (
504 r'https?://',
505 r'^#\s*(define|include|import|pragma|if|ifndef|endif)\b',
506 )
507
508 if os.path.basename(afile).startswith('OWNERS'):
509 # File paths can get long, and there's no way to break them up into
510 # multiple lines.
511 skip_regexps += (
512 r'^include\b',
513 r'file:',
514 )
515
516 skip_regexps = [re.compile(x) for x in skip_regexps]
Ryan Cuiec4d6332011-05-02 14:15:25 -0700517 for line_num, line in _get_file_diff(afile, commit):
518 # Allow certain lines to exceed the maxlen rule.
George Burgess IVf9f79eb2019-07-09 20:12:55 -0700519 if len(line) <= MAX_LEN or any(x.search(line) for x in skip_regexps):
Jon Salz98255932012-08-18 14:48:02 +0800520 continue
521
522 errors.append('%s, line %s, %s chars' % (afile, line_num, len(line)))
523 if len(errors) == 5: # Just show the first 5 errors.
524 break
Ryan Cuiec4d6332011-05-02 14:15:25 -0700525
526 if errors:
527 msg = 'Found lines longer than %s characters (first 5 shown):' % MAX_LEN
Ryan Cui1562fb82011-05-09 11:01:31 -0700528 return HookFailure(msg, errors)
Mike Frysinger8cf80812019-09-16 23:49:29 -0400529 return None
Ryan Cui1562fb82011-05-09 11:01:31 -0700530
Ryan Cuiec4d6332011-05-02 14:15:25 -0700531
Shuhei Takahashiabc20f32017-07-10 19:35:45 +0900532def _check_no_stray_whitespace(_project, commit, options=()):
Ryan Cuiec4d6332011-05-02 14:15:25 -0700533 """Checks that there is no stray whitespace at source lines end."""
Shuhei Takahashiabc20f32017-07-10 19:35:45 +0900534 included, excluded = _parse_common_inclusion_options(options)
Ryan Cuiec4d6332011-05-02 14:15:25 -0700535 files = _filter_files(_get_affected_files(commit),
Shuhei Takahashiabc20f32017-07-10 19:35:45 +0900536 included + COMMON_INCLUDED_PATHS,
537 excluded + COMMON_EXCLUDED_PATHS)
Prathmesh Prabhuc5254652016-12-22 12:58:05 -0800538 return _check_lines_in_diff(commit, files,
539 lambda line: line.rstrip() != line,
540 'Found line ending with white space in:')
Ryan Cui1562fb82011-05-09 11:01:31 -0700541
Ryan Cuiec4d6332011-05-02 14:15:25 -0700542
Shuhei Takahashiabc20f32017-07-10 19:35:45 +0900543def _check_no_tabs(_project, commit, options=()):
Ryan Cuiec4d6332011-05-02 14:15:25 -0700544 """Checks there are no unexpanded tabs."""
Mike Frysingercd134512017-10-26 04:36:33 -0400545 # Don't add entire repos here. Update the PRESUBMIT.cfg in each repo instead.
546 # We only whitelist known specific filetypes here that show up in all repos.
Ryan Cuiec4d6332011-05-02 14:15:25 -0700547 TAB_OK_PATHS = [
Mike Frysinger24dd3c52019-08-17 14:22:48 -0400548 r'.*\.ebuild$',
549 r'.*\.eclass$',
550 r'.*\.go$',
551 r'.*/[M|m]akefile$',
552 r'.*\.mk$',
Ryan Cuiec4d6332011-05-02 14:15:25 -0700553 ]
554
Shuhei Takahashiabc20f32017-07-10 19:35:45 +0900555 included, excluded = _parse_common_inclusion_options(options)
Ryan Cuiec4d6332011-05-02 14:15:25 -0700556 files = _filter_files(_get_affected_files(commit),
Shuhei Takahashiabc20f32017-07-10 19:35:45 +0900557 included + COMMON_INCLUDED_PATHS,
558 excluded + COMMON_EXCLUDED_PATHS + TAB_OK_PATHS)
Prathmesh Prabhuc5254652016-12-22 12:58:05 -0800559 return _check_lines_in_diff(commit, files,
560 lambda line: '\t' in line,
561 'Found a tab character in:')
Ryan Cuiec4d6332011-05-02 14:15:25 -0700562
Prathmesh Prabhuc5254652016-12-22 12:58:05 -0800563
Shuhei Takahashiabc20f32017-07-10 19:35:45 +0900564def _check_tabbed_indents(_project, commit, options=()):
Prathmesh Prabhuc5254652016-12-22 12:58:05 -0800565 """Checks that indents use tabs only."""
566 TABS_REQUIRED_PATHS = [
Mike Frysinger24dd3c52019-08-17 14:22:48 -0400567 r'.*\.ebuild$',
568 r'.*\.eclass$',
Prathmesh Prabhuc5254652016-12-22 12:58:05 -0800569 ]
570 LEADING_SPACE_RE = re.compile('[\t]* ')
571
Shuhei Takahashiabc20f32017-07-10 19:35:45 +0900572 included, excluded = _parse_common_inclusion_options(options)
Prathmesh Prabhuc5254652016-12-22 12:58:05 -0800573 files = _filter_files(_get_affected_files(commit),
Shuhei Takahashiabc20f32017-07-10 19:35:45 +0900574 included + TABS_REQUIRED_PATHS,
575 excluded + COMMON_EXCLUDED_PATHS)
Prathmesh Prabhuc5254652016-12-22 12:58:05 -0800576 return _check_lines_in_diff(
577 commit, files,
578 lambda line: LEADING_SPACE_RE.match(line) is not None,
579 'Found a space in indentation (must be all tabs):')
Ryan Cui1562fb82011-05-09 11:01:31 -0700580
Ryan Cuiec4d6332011-05-02 14:15:25 -0700581
Rahul Chaudhry09f61372015-07-31 17:14:26 -0700582def _check_gofmt(_project, commit):
583 """Checks that Go files are formatted with gofmt."""
584 errors = []
585 files = _filter_files(_get_affected_files(commit, relative=True),
586 [r'\.go$'])
587
588 for gofile in files:
589 contents = _get_file_content(gofile, commit)
Mike Frysingeraa7dc942019-09-25 00:07:24 -0400590 output = _run_command(cmd=['gofmt', '-l'], input=contents.encode('utf-8'),
Rahul Chaudhry0e515342015-08-07 12:00:43 -0700591 combine_stdout_stderr=True)
Rahul Chaudhry09f61372015-07-31 17:14:26 -0700592 if output:
593 errors.append(gofile)
594 if errors:
595 return HookFailure('Files not formatted with gofmt:', errors)
Mike Frysinger8cf80812019-09-16 23:49:29 -0400596 return None
Rahul Chaudhry09f61372015-07-31 17:14:26 -0700597
598
Fletcher Woodruffce1cb1b2019-08-16 15:59:32 -0600599def _check_rustfmt(_project, commit):
600 """Checks that Rust files are formatted with rustfmt."""
601 errors = []
602 files = _filter_files(_get_affected_files(commit, relative=True),
603 [r'\.rs$'])
604
605 for rustfile in files:
606 contents = _get_file_content(rustfile, commit)
Mike Frysingeraa7dc942019-09-25 00:07:24 -0400607 output = _run_command(cmd=['rustfmt'], input=contents.encode('utf-8'),
Fletcher Woodruffce1cb1b2019-08-16 15:59:32 -0600608 combine_stdout_stderr=True)
609 if output != contents:
610 errors.append(rustfile)
611 if errors:
612 return HookFailure('Files not formatted with rustfmt: '
613 "(run 'cargo fmt' to fix)", errors)
Mike Frysinger8cf80812019-09-16 23:49:29 -0400614 return None
Fletcher Woodruffce1cb1b2019-08-16 15:59:32 -0600615
616
Mike Frysingerae409522014-02-01 03:16:11 -0500617def _check_change_has_test_field(_project, commit):
Ryan Cuiec4d6332011-05-02 14:15:25 -0700618 """Check for a non-empty 'TEST=' field in the commit message."""
David McMahon8f6553e2011-06-10 15:46:36 -0700619 TEST_RE = r'\nTEST=\S+'
Ryan Cuiec4d6332011-05-02 14:15:25 -0700620
Mandeep Singh Baines96a53be2011-05-03 11:10:25 -0700621 if not re.search(TEST_RE, _get_commit_desc(commit)):
Ryan Cui1562fb82011-05-09 11:01:31 -0700622 msg = 'Changelist description needs TEST field (after first line)'
623 return HookFailure(msg)
Mike Frysinger8cf80812019-09-16 23:49:29 -0400624 return None
Ryan Cui1562fb82011-05-09 11:01:31 -0700625
Ryan Cuiec4d6332011-05-02 14:15:25 -0700626
Mike Frysingerae409522014-02-01 03:16:11 -0500627def _check_change_has_valid_cq_depend(_project, commit):
Jason D. Clinton299e3222019-05-23 09:42:03 -0600628 """Check for a correctly formatted Cq-Depend field in the commit message."""
Luigi Semenzatob8c7d7d2019-06-03 09:43:21 -0700629 desc = _get_commit_desc(commit)
Jason D. Clinton299e3222019-05-23 09:42:03 -0600630 msg = 'Changelist has invalid Cq-Depend target.'
631 example = 'Example: Cq-Depend: chromium:1234, chrome-internal:2345'
David Jamesc3b68b32013-04-03 09:17:03 -0700632 try:
Luigi Semenzatob8c7d7d2019-06-03 09:43:21 -0700633 patch.GetPaladinDeps(desc)
David Jamesc3b68b32013-04-03 09:17:03 -0700634 except ValueError as ex:
635 return HookFailure(msg, [example, str(ex)])
Luigi Semenzatob8c7d7d2019-06-03 09:43:21 -0700636 # Check that Cq-Depend is in the same paragraph as Change-Id.
637 msg = 'Cq-Depend (or CQ-DEPEND) is not in the same paragraph as Change-Id.'
638 paragraphs = desc.split('\n\n')
639 for paragraph in paragraphs:
640 if (re.search(r'^Cq-Depend:', paragraph, re.M) or
641 re.search(r'^CQ-DEPEND=', paragraph, re.M)) \
642 and not re.search('^Change-Id:', paragraph, re.M):
643 return HookFailure(msg)
Mike Frysinger8cf80812019-09-16 23:49:29 -0400644 return None
David Jamesc3b68b32013-04-03 09:17:03 -0700645
646
Bernie Thompsonf8fea992016-01-14 10:27:18 -0800647def _check_change_is_contribution(_project, commit):
648 """Check that the change is a contribution."""
649 NO_CONTRIB = 'not a contribution'
650 if NO_CONTRIB in _get_commit_desc(commit).lower():
651 msg = ('Changelist is not a contribution, this cannot be accepted.\n'
652 'Please remove the "%s" text from the commit message.') % NO_CONTRIB
653 return HookFailure(msg)
Mike Frysinger8cf80812019-09-16 23:49:29 -0400654 return None
Bernie Thompsonf8fea992016-01-14 10:27:18 -0800655
656
Alex Deymo643ac4c2015-09-03 10:40:50 -0700657def _check_change_has_bug_field(project, commit):
David McMahon8f6553e2011-06-10 15:46:36 -0700658 """Check for a correctly formatted 'BUG=' field in the commit message."""
David James5c0073d2013-04-03 08:48:52 -0700659 OLD_BUG_RE = r'\nBUG=.*chromium-os'
660 if re.search(OLD_BUG_RE, _get_commit_desc(commit)):
661 msg = ('The chromium-os bug tracker is now deprecated. Please use\n'
662 'the chromium tracker in your BUG= line now.')
663 return HookFailure(msg)
Ryan Cuiec4d6332011-05-02 14:15:25 -0700664
Alex Deymo643ac4c2015-09-03 10:40:50 -0700665 # Android internal and external projects use "Bug: " to track bugs in
666 # buganizer.
667 BUG_COLON_REMOTES = (
668 'aosp',
669 'goog',
670 )
671 if project.remote in BUG_COLON_REMOTES:
672 BUG_RE = r'\nBug: ?([Nn]one|\d+)'
673 if not re.search(BUG_RE, _get_commit_desc(commit)):
674 msg = ('Changelist description needs BUG field (after first line):\n'
675 'Bug: 9999 (for buganizer)\n'
676 'BUG=None')
677 return HookFailure(msg)
678 else:
Jorge Lucangeli Obesdce214e2017-10-25 15:04:39 -0400679 BUG_RE = r'\nBUG=([Nn]one|(chromium|b):\d+)'
Alex Deymo643ac4c2015-09-03 10:40:50 -0700680 if not re.search(BUG_RE, _get_commit_desc(commit)):
681 msg = ('Changelist description needs BUG field (after first line):\n'
Alex Deymo643ac4c2015-09-03 10:40:50 -0700682 'BUG=chromium:9999 (for public tracker)\n'
Alex Deymo643ac4c2015-09-03 10:40:50 -0700683 'BUG=b:9999 (for buganizer)\n'
684 'BUG=None')
685 return HookFailure(msg)
Ryan Cui1562fb82011-05-09 11:01:31 -0700686
Mike Frysinger8cf80812019-09-16 23:49:29 -0400687 return None
688
Ryan Cuiec4d6332011-05-02 14:15:25 -0700689
Jack Neus8edbf642019-07-10 16:08:31 -0600690def _check_change_no_include_oem(project, commit):
691 """Check that the change does not reference OEMs."""
692 ALLOWLIST = {
693 'chromiumos/platform/ec',
694 # Used by unit tests.
695 'project',
696 }
697 if project.name not in ALLOWLIST:
698 return None
699
Mike Frysingerbb34a222019-07-31 14:40:46 -0400700 TAGS = {
Jack Neus8edbf642019-07-10 16:08:31 -0600701 'Reviewed-on',
702 'Reviewed-by',
703 'Signed-off-by',
704 'Commit-Ready',
705 'Tested-by',
706 'Commit-Queue',
707 'Legacy-Commit-Queue',
708 'Acked-by',
709 'Modified-by',
710 'CC',
711 'Suggested-by',
712 'Reported-by',
713 'Acked-for-chrome-by',
Mike Frysingerbb34a222019-07-31 14:40:46 -0400714 }
Jack Neus8edbf642019-07-10 16:08:31 -0600715
716 # Ignore tags, which could reasonably contain OEM names
717 # (e.g. Reviewed-by: foo@oem.corp-partner.google.com).
Jack Neus8edbf642019-07-10 16:08:31 -0600718 commit_message = ' '.join(
Mike Frysingerbb34a222019-07-31 14:40:46 -0400719 x for x in _get_commit_desc(commit).splitlines()
720 if ':' not in x or x.split(':', 1)[0] not in TAGS)
721
Jack Neus8edbf642019-07-10 16:08:31 -0600722 commit_message = re.sub(r'[\s_-]+', ' ', commit_message)
723
724 # Exercise caution when expanding these lists. Adding a name
725 # could indicate a new relationship with a company!
726 OEMS = ['hp', 'hewlett packard', 'dell', 'lenovo', 'acer', 'asus', 'samsung']
727 ODMS = [
728 'bitland', 'compal', 'haier', 'huaqin', 'inventec', 'lg', 'pegatron',
729 'pegatron(ems)', 'quanta', 'samsung', 'wistron'
730 ]
731
732 for name_type, name_list in [('OEM', OEMS), ('ODM', ODMS)]:
733 # Construct regex
734 name_re = r'\b(%s)\b' % '|'.join([re.escape(x) for x in name_list])
735 matches = [x[0] for x in re.findall(name_re, commit_message, re.IGNORECASE)]
Mike Frysingere52b1bc2019-09-16 23:45:41 -0400736 if matches:
Jack Neus8edbf642019-07-10 16:08:31 -0600737 # If there's a match, throw an error.
738 error_msg = ('Changelist description contains the name of an'
739 ' %s: "%s".' % (name_type, '","'.join(matches)))
740 return HookFailure(error_msg)
741
Mike Frysinger8cf80812019-09-16 23:49:29 -0400742 return None
743
Jack Neus8edbf642019-07-10 16:08:31 -0600744
Mike Frysinger292b45d2014-11-25 01:17:10 -0500745def _check_for_uprev(project, commit, project_top=None):
Doug Anderson42b8a052013-06-26 10:45:36 -0700746 """Check that we're not missing a revbump of an ebuild in the given commit.
747
748 If the given commit touches files in a directory that has ebuilds somewhere
749 up the directory hierarchy, it's very likely that we need an ebuild revbump
750 in order for those changes to take effect.
751
752 It's not totally trivial to detect a revbump, so at least detect that an
753 ebuild with a revision number in it was touched. This should handle the
754 common case where we use a symlink to do the revbump.
755
756 TODO: it would be nice to enhance this hook to:
757 * Handle cases where people revbump with a slightly different syntax. I see
758 one ebuild (puppy) that revbumps with _pN. This is a false positive.
759 * Catches cases where people aren't using symlinks for revbumps. If they
760 edit a revisioned file directly (and are expected to rename it for revbump)
761 we'll miss that. Perhaps we could detect that the file touched is a
762 symlink?
763
764 If a project doesn't use symlinks we'll potentially miss a revbump, but we're
765 still better off than without this check.
766
767 Args:
Alex Deymo643ac4c2015-09-03 10:40:50 -0700768 project: The Project to look at
Doug Anderson42b8a052013-06-26 10:45:36 -0700769 commit: The commit to look at
Mike Frysinger292b45d2014-11-25 01:17:10 -0500770 project_top: Top dir to process commits in
Doug Anderson42b8a052013-06-26 10:45:36 -0700771
772 Returns:
773 A HookFailure or None.
774 """
Mike Frysinger011af942014-01-17 16:12:22 -0500775 # If this is the portage-stable overlay, then ignore the check. It's rare
776 # that we're doing anything other than importing files from upstream, so
777 # forcing a rev bump makes no sense.
778 whitelist = (
779 'chromiumos/overlays/portage-stable',
780 )
Alex Deymo643ac4c2015-09-03 10:40:50 -0700781 if project.name in whitelist:
Mike Frysinger011af942014-01-17 16:12:22 -0500782 return None
783
Mike Frysinger292b45d2014-11-25 01:17:10 -0500784 def FinalName(obj):
785 # If the file is being deleted, then the dst_file is not set.
786 if obj.dst_file is None:
787 return obj.src_file
788 else:
789 return obj.dst_file
790
791 affected_path_objs = _get_affected_files(
792 commit, include_deletes=True, include_symlinks=True, relative=True,
793 full_details=True)
Doug Anderson42b8a052013-06-26 10:45:36 -0700794
795 # Don't yell about changes to whitelisted files...
Aviv Keshet272f2e52016-04-25 14:49:44 -0700796 whitelist = ('ChangeLog', 'Manifest', 'metadata.xml', 'COMMIT-QUEUE.ini')
Mike Frysinger292b45d2014-11-25 01:17:10 -0500797 affected_path_objs = [x for x in affected_path_objs
798 if os.path.basename(FinalName(x)) not in whitelist]
799 if not affected_path_objs:
Doug Anderson42b8a052013-06-26 10:45:36 -0700800 return None
801
802 # If we've touched any file named with a -rN.ebuild then we'll say we're
803 # OK right away. See TODO above about enhancing this.
Mike Frysinger292b45d2014-11-25 01:17:10 -0500804 touched_revved_ebuild = any(re.search(r'-r\d*\.ebuild$', FinalName(x))
805 for x in affected_path_objs)
Doug Anderson42b8a052013-06-26 10:45:36 -0700806 if touched_revved_ebuild:
807 return None
808
Mike Frysinger292b45d2014-11-25 01:17:10 -0500809 # If we're creating new ebuilds from scratch, then we don't need an uprev.
810 # Find all the dirs that new ebuilds and ignore their files/.
811 ebuild_dirs = [os.path.dirname(FinalName(x)) + '/' for x in affected_path_objs
812 if FinalName(x).endswith('.ebuild') and x.status == 'A']
813 affected_path_objs = [obj for obj in affected_path_objs
814 if not any(FinalName(obj).startswith(x)
815 for x in ebuild_dirs)]
816 if not affected_path_objs:
Mike Frysinger8cf80812019-09-16 23:49:29 -0400817 return None
Mike Frysinger292b45d2014-11-25 01:17:10 -0500818
Doug Anderson42b8a052013-06-26 10:45:36 -0700819 # We want to examine the current contents of all directories that are parents
820 # of files that were touched (up to the top of the project).
821 #
822 # ...note: we use the current directory contents even though it may have
823 # changed since the commit we're looking at. This is just a heuristic after
824 # all. Worst case we don't flag a missing revbump.
Mike Frysinger292b45d2014-11-25 01:17:10 -0500825 if project_top is None:
826 project_top = os.getcwd()
Doug Anderson42b8a052013-06-26 10:45:36 -0700827 dirs_to_check = set([project_top])
Mike Frysinger292b45d2014-11-25 01:17:10 -0500828 for obj in affected_path_objs:
829 path = os.path.join(project_top, os.path.dirname(FinalName(obj)))
Doug Anderson42b8a052013-06-26 10:45:36 -0700830 while os.path.exists(path) and not os.path.samefile(path, project_top):
831 dirs_to_check.add(path)
832 path = os.path.dirname(path)
833
834 # Look through each directory. If it's got an ebuild in it then we'll
835 # consider this as a case when we need a revbump.
Gwendal Grignoua3086c32014-12-09 11:17:22 -0800836 affected_paths = set(os.path.join(project_top, FinalName(x))
837 for x in affected_path_objs)
Doug Anderson42b8a052013-06-26 10:45:36 -0700838 for dir_path in dirs_to_check:
839 contents = os.listdir(dir_path)
840 ebuilds = [os.path.join(dir_path, path)
841 for path in contents if path.endswith('.ebuild')]
842 ebuilds_9999 = [path for path in ebuilds if path.endswith('-9999.ebuild')]
843
C Shapiroae157ae2017-09-18 16:24:03 -0600844 affected_paths_under_9999_ebuilds = set()
845 for affected_path in affected_paths:
846 for ebuild_9999 in ebuilds_9999:
847 ebuild_dir = os.path.dirname(ebuild_9999)
848 if affected_path.startswith(ebuild_dir):
849 affected_paths_under_9999_ebuilds.add(affected_path)
850
851 # If every file changed exists under a 9999 ebuild, then skip
852 if len(affected_paths_under_9999_ebuilds) == len(affected_paths):
853 continue
854
Doug Anderson42b8a052013-06-26 10:45:36 -0700855 # If the -9999.ebuild file was touched the bot will uprev for us.
856 # ...we'll use a simple intersection here as a heuristic...
Mike Frysinger292b45d2014-11-25 01:17:10 -0500857 if set(ebuilds_9999) & affected_paths:
Doug Anderson42b8a052013-06-26 10:45:36 -0700858 continue
859
860 if ebuilds:
Mike Frysinger292b45d2014-11-25 01:17:10 -0500861 return HookFailure('Changelist probably needs a revbump of an ebuild, '
862 'or a -r1.ebuild symlink if this is a new ebuild:\n'
863 '%s' % dir_path)
Doug Anderson42b8a052013-06-26 10:45:36 -0700864
865 return None
866
867
Mike Frysingerbf8b91c2014-02-01 02:50:27 -0500868def _check_ebuild_eapi(project, commit):
Mike Frysinger948284a2018-02-01 15:22:56 -0500869 """Make sure we have people use EAPI=5 or newer with custom ebuilds.
Mike Frysingerbf8b91c2014-02-01 02:50:27 -0500870
871 We want to get away from older EAPI's as it makes life confusing and they
872 have less builtin error checking.
873
874 Args:
Alex Deymo643ac4c2015-09-03 10:40:50 -0700875 project: The Project to look at
Mike Frysingerbf8b91c2014-02-01 02:50:27 -0500876 commit: The commit to look at
877
878 Returns:
879 A HookFailure or None.
880 """
881 # If this is the portage-stable overlay, then ignore the check. It's rare
Mike Frysingercd6adfc2014-02-06 01:03:56 -0500882 # that we're doing anything other than importing files from upstream, and
883 # we shouldn't be rewriting things fundamentally anyways.
Mike Frysingerbf8b91c2014-02-01 02:50:27 -0500884 whitelist = (
885 'chromiumos/overlays/portage-stable',
886 )
Alex Deymo643ac4c2015-09-03 10:40:50 -0700887 if project.name in whitelist:
Mike Frysingerbf8b91c2014-02-01 02:50:27 -0500888 return None
889
Mike Frysinger948284a2018-02-01 15:22:56 -0500890 BAD_EAPIS = ('0', '1', '2', '3', '4')
Mike Frysingerbf8b91c2014-02-01 02:50:27 -0500891
892 get_eapi = re.compile(r'^\s*EAPI=[\'"]?([^\'"]+)')
893
894 ebuilds_re = [r'\.ebuild$']
895 ebuilds = _filter_files(_get_affected_files(commit, relative=True),
896 ebuilds_re)
897 bad_ebuilds = []
898
899 for ebuild in ebuilds:
900 # If the ebuild does not specify an EAPI, it defaults to 0.
901 eapi = '0'
902
903 lines = _get_file_content(ebuild, commit).splitlines()
904 if len(lines) == 1:
905 # This is most likely a symlink, so skip it entirely.
906 continue
907
908 for line in lines:
909 m = get_eapi.match(line)
910 if m:
911 # Once we hit the first EAPI line in this ebuild, stop processing.
912 # The spec requires that there only be one and it be first, so
913 # checking all possible values is pointless. We also assume that
914 # it's "the" EAPI line and not something in the middle of a heredoc.
915 eapi = m.group(1)
916 break
917
918 if eapi in BAD_EAPIS:
919 bad_ebuilds.append((ebuild, eapi))
920
921 if bad_ebuilds:
922 # pylint: disable=C0301
923 url = 'http://dev.chromium.org/chromium-os/how-tos-and-troubleshooting/upgrade-ebuild-eapis'
924 # pylint: enable=C0301
925 return HookFailure(
Mike Frysingercd6adfc2014-02-06 01:03:56 -0500926 'These ebuilds are using old EAPIs. If these are imported from\n'
927 'Gentoo, then you may ignore and upload once with the --no-verify\n'
Mike Frysinger948284a2018-02-01 15:22:56 -0500928 'flag. Otherwise, please update to 5 or newer.\n'
Mike Frysingerbf8b91c2014-02-01 02:50:27 -0500929 '\t%s\n'
930 'See this guide for more details:\n%s\n' %
931 ('\n\t'.join(['%s: EAPI=%s' % x for x in bad_ebuilds]), url))
932
Mike Frysinger8cf80812019-09-16 23:49:29 -0400933 return None
934
Mike Frysingerbf8b91c2014-02-01 02:50:27 -0500935
Mike Frysinger89bdb852014-02-01 05:26:26 -0500936def _check_ebuild_keywords(_project, commit):
Mike Frysingerc51ece72014-01-17 16:23:40 -0500937 """Make sure we use the new style KEYWORDS when possible in ebuilds.
938
939 If an ebuild generally does not care about the arch it is running on, then
940 ebuilds should flag it with one of:
941 KEYWORDS="*" # A stable ebuild.
942 KEYWORDS="~*" # An unstable ebuild.
943 KEYWORDS="-* ..." # Is known to only work on specific arches.
944
945 Args:
Alex Deymo643ac4c2015-09-03 10:40:50 -0700946 project: The Project to look at
Mike Frysingerc51ece72014-01-17 16:23:40 -0500947 commit: The commit to look at
948
949 Returns:
950 A HookFailure or None.
951 """
952 WHITELIST = set(('*', '-*', '~*'))
953
954 get_keywords = re.compile(r'^\s*KEYWORDS="(.*)"')
955
Mike Frysinger89bdb852014-02-01 05:26:26 -0500956 ebuilds_re = [r'\.ebuild$']
957 ebuilds = _filter_files(_get_affected_files(commit, relative=True),
958 ebuilds_re)
959
Mike Frysinger8d42d742014-09-22 15:50:21 -0400960 bad_ebuilds = []
Mike Frysingerc51ece72014-01-17 16:23:40 -0500961 for ebuild in ebuilds:
Mike Frysinger5c9e58d2014-09-09 03:32:50 -0400962 # We get the full content rather than a diff as the latter does not work
963 # on new files (like when adding new ebuilds).
964 lines = _get_file_content(ebuild, commit).splitlines()
965 for line in lines:
Mike Frysingerc51ece72014-01-17 16:23:40 -0500966 m = get_keywords.match(line)
967 if m:
968 keywords = set(m.group(1).split())
969 if not keywords or WHITELIST - keywords != WHITELIST:
970 continue
971
Mike Frysinger8d42d742014-09-22 15:50:21 -0400972 bad_ebuilds.append(ebuild)
973
974 if bad_ebuilds:
975 return HookFailure(
976 '%s\n'
977 'Please update KEYWORDS to use a glob:\n'
978 'If the ebuild should be marked stable (normal for non-9999 ebuilds):\n'
979 ' KEYWORDS="*"\n'
980 'If the ebuild should be marked unstable (normal for '
981 'cros-workon / 9999 ebuilds):\n'
982 ' KEYWORDS="~*"\n'
Mike Frysingerde8efea2015-05-17 03:42:26 -0400983 'If the ebuild needs to be marked for only specific arches, '
Mike Frysinger8d42d742014-09-22 15:50:21 -0400984 'then use -* like so:\n'
985 ' KEYWORDS="-* arm ..."\n' % '\n* '.join(bad_ebuilds))
Mike Frysingerc51ece72014-01-17 16:23:40 -0500986
Mike Frysinger8cf80812019-09-16 23:49:29 -0400987 return None
988
Mike Frysingerc51ece72014-01-17 16:23:40 -0500989
Yu-Ju Hong5e0efa72013-11-19 16:28:10 -0800990def _check_ebuild_licenses(_project, commit):
991 """Check if the LICENSE field in the ebuild is correct."""
Brian Norris7a610e82016-02-17 12:24:54 -0800992 affected_paths = _get_affected_files(commit, relative=True)
Yu-Ju Hong5e0efa72013-11-19 16:28:10 -0800993 touched_ebuilds = [x for x in affected_paths if x.endswith('.ebuild')]
994
995 # A list of licenses to ignore for now.
Yu-Ju Hongc0963fa2014-03-03 12:36:52 -0800996 LICENSES_IGNORE = ['||', '(', ')']
Yu-Ju Hong5e0efa72013-11-19 16:28:10 -0800997
998 for ebuild in touched_ebuilds:
999 # Skip virutal packages.
1000 if ebuild.split('/')[-3] == 'virtual':
1001 continue
1002
Alex Kleinb5953522018-08-03 11:44:21 -06001003 # e.g. path/to/overlay/category/package/package.ebuild -> path/to/overlay
1004 overlay_path = os.sep.join(ebuild.split(os.sep)[:-3])
1005
Yu-Ju Hong5e0efa72013-11-19 16:28:10 -08001006 try:
Brian Norris7a610e82016-02-17 12:24:54 -08001007 ebuild_content = _get_file_content(ebuild, commit)
Alex Kleinb5953522018-08-03 11:44:21 -06001008 license_types = licenses_lib.GetLicenseTypesFromEbuild(ebuild_content,
1009 overlay_path)
Yu-Ju Hong5e0efa72013-11-19 16:28:10 -08001010 except ValueError as e:
Mike Frysingerf1ee2bf2019-09-16 23:47:33 -04001011 return HookFailure(str(e), [ebuild])
Yu-Ju Hong5e0efa72013-11-19 16:28:10 -08001012
1013 # Also ignore licenses ending with '?'
1014 for license_type in [x for x in license_types
1015 if x not in LICENSES_IGNORE and not x.endswith('?')]:
1016 try:
Alex Kleinb5953522018-08-03 11:44:21 -06001017 licenses_lib.Licensing.FindLicenseType(license_type,
1018 overlay_path=overlay_path)
Yu-Ju Hong5e0efa72013-11-19 16:28:10 -08001019 except AssertionError as e:
Mike Frysingerf1ee2bf2019-09-16 23:47:33 -04001020 return HookFailure(str(e), [ebuild])
Yu-Ju Hong5e0efa72013-11-19 16:28:10 -08001021
Mike Frysinger8cf80812019-09-16 23:49:29 -04001022 return None
1023
Yu-Ju Hong5e0efa72013-11-19 16:28:10 -08001024
Mike Frysingercd363c82014-02-01 05:20:18 -05001025def _check_ebuild_virtual_pv(project, commit):
1026 """Enforce the virtual PV policies."""
1027 # If this is the portage-stable overlay, then ignore the check.
1028 # We want to import virtuals as-is from upstream Gentoo.
1029 whitelist = (
1030 'chromiumos/overlays/portage-stable',
1031 )
Alex Deymo643ac4c2015-09-03 10:40:50 -07001032 if project.name in whitelist:
Mike Frysingercd363c82014-02-01 05:20:18 -05001033 return None
1034
1035 # We assume the repo name is the same as the dir name on disk.
1036 # It would be dumb to not have them match though.
Alex Deymo643ac4c2015-09-03 10:40:50 -07001037 project_base = os.path.basename(project.name)
Mike Frysingercd363c82014-02-01 05:20:18 -05001038
1039 is_variant = lambda x: x.startswith('overlay-variant-')
1040 is_board = lambda x: x.startswith('overlay-')
Douglas Andersonb43df7f2018-06-25 13:40:50 -07001041 is_baseboard = lambda x: x.startswith('baseboard-')
1042 is_chipset = lambda x: x.startswith('chipset-')
1043 is_project = lambda x: x.startswith('project-')
Mike Frysingercd363c82014-02-01 05:20:18 -05001044 is_private = lambda x: x.endswith('-private')
1045
Douglas Andersonb43df7f2018-06-25 13:40:50 -07001046 is_special_overlay = lambda x: (is_board(x) or is_chipset(x) or
1047 is_baseboard(x) or is_project(x))
1048
Mike Frysingercd363c82014-02-01 05:20:18 -05001049 get_pv = re.compile(r'(.*?)virtual/([^/]+)/\2-([^/]*)\.ebuild$')
1050
1051 ebuilds_re = [r'\.ebuild$']
1052 ebuilds = _filter_files(_get_affected_files(commit, relative=True),
1053 ebuilds_re)
1054 bad_ebuilds = []
1055
1056 for ebuild in ebuilds:
1057 m = get_pv.match(ebuild)
1058 if m:
1059 overlay = m.group(1)
Douglas Andersonb43df7f2018-06-25 13:40:50 -07001060 if not overlay or not is_special_overlay(overlay):
Alex Deymo643ac4c2015-09-03 10:40:50 -07001061 overlay = project_base
Mike Frysingercd363c82014-02-01 05:20:18 -05001062
1063 pv = m.group(3).split('-', 1)[0]
1064
Bernie Thompsone5ee1822016-01-12 14:22:23 -08001065 # Virtual versions >= 4 are special cases used above the standard
1066 # versioning structure, e.g. if one has a board inheriting a board.
1067 if float(pv) >= 4:
1068 want_pv = pv
Mike Frysingercd363c82014-02-01 05:20:18 -05001069 elif is_board(overlay):
Douglas Andersonb43df7f2018-06-25 13:40:50 -07001070 if is_private(overlay):
1071 want_pv = '3.5' if is_variant(overlay) else '3'
1072 elif is_board(overlay):
1073 want_pv = '2.5' if is_variant(overlay) else '2'
1074 elif is_baseboard(overlay):
1075 want_pv = '1.9'
1076 elif is_chipset(overlay):
1077 want_pv = '1.8'
1078 elif is_project(overlay):
1079 want_pv = '1.7' if is_private(overlay) else '1.5'
Mike Frysingercd363c82014-02-01 05:20:18 -05001080 else:
1081 want_pv = '1'
1082
1083 if pv != want_pv:
1084 bad_ebuilds.append((ebuild, pv, want_pv))
1085
1086 if bad_ebuilds:
1087 # pylint: disable=C0301
1088 url = 'http://dev.chromium.org/chromium-os/how-tos-and-troubleshooting/portage-build-faq#TOC-Virtuals-and-central-management'
1089 # pylint: enable=C0301
1090 return HookFailure(
1091 'These virtuals have incorrect package versions (PVs). Please adjust:\n'
1092 '\t%s\n'
1093 'If this is an upstream Gentoo virtual, then you may ignore this\n'
1094 'check (and re-run w/--no-verify). Otherwise, please see this\n'
1095 'page for more details:\n%s\n' %
1096 ('\n\t'.join(['%s:\n\t\tPV is %s but should be %s' % x
1097 for x in bad_ebuilds]), url))
1098
Mike Frysinger8cf80812019-09-16 23:49:29 -04001099 return None
1100
Mike Frysingercd363c82014-02-01 05:20:18 -05001101
Daniel Erat9d203ff2015-02-17 10:12:21 -07001102def _check_portage_make_use_var(_project, commit):
1103 """Verify that $USE is set correctly in make.conf and make.defaults."""
1104 files = _filter_files(_get_affected_files(commit, relative=True),
1105 [r'(^|/)make.(conf|defaults)$'])
1106
1107 errors = []
1108 for path in files:
1109 basename = os.path.basename(path)
1110
1111 # Has a USE= line already been encountered in this file?
1112 saw_use = False
1113
1114 for i, line in enumerate(_get_file_content(path, commit).splitlines(), 1):
1115 if not line.startswith('USE='):
1116 continue
1117
1118 preserves_use = '${USE}' in line or '$USE' in line
1119
1120 if (basename == 'make.conf' or
1121 (basename == 'make.defaults' and saw_use)) and not preserves_use:
1122 errors.append('%s:%d: missing ${USE}' % (path, i))
1123 elif basename == 'make.defaults' and not saw_use and preserves_use:
1124 errors.append('%s:%d: ${USE} referenced in initial declaration' %
1125 (path, i))
1126
1127 saw_use = True
1128
1129 if errors:
1130 return HookFailure(
1131 'One or more Portage make files appear to set USE incorrectly.\n'
1132 '\n'
1133 'All USE assignments in make.conf and all assignments after the\n'
1134 'initial declaration in make.defaults should contain "${USE}" to\n'
1135 'preserve previously-set flags.\n'
1136 '\n'
1137 'The initial USE declaration in make.defaults should not contain\n'
1138 '"${USE}".\n',
1139 errors)
1140
Mike Frysinger8cf80812019-09-16 23:49:29 -04001141 return None
1142
Daniel Erat9d203ff2015-02-17 10:12:21 -07001143
Mike Frysingerae409522014-02-01 03:16:11 -05001144def _check_change_has_proper_changeid(_project, commit):
Mandeep Singh Bainesa23eb5f2011-05-04 13:43:25 -07001145 """Verify that Change-ID is present in last paragraph of commit message."""
Mike Frysinger4a22bf02014-10-31 13:53:35 -04001146 CHANGE_ID_RE = r'\nChange-Id: I[a-f0-9]+\n'
Mandeep Singh Bainesa23eb5f2011-05-04 13:43:25 -07001147 desc = _get_commit_desc(commit)
Mike Frysinger4a22bf02014-10-31 13:53:35 -04001148 m = re.search(CHANGE_ID_RE, desc)
Mike Frysinger02b88bd2014-11-21 00:29:38 -05001149 if not m:
Vadim Bendebury20532ba2017-05-23 17:26:15 -07001150 return HookFailure('Last paragraph of description must include Change-Id.')
Ryan Cui1562fb82011-05-09 11:01:31 -07001151
Vadim Bendebury20532ba2017-05-23 17:26:15 -07001152 # S-o-b tags always allowed to follow Change-ID.
1153 allowed_tags = ['Signed-off-by']
1154
Mike Frysinger02b88bd2014-11-21 00:29:38 -05001155 end = desc[m.end():].strip().splitlines()
Vadim Bendebury6504aea2017-09-13 18:35:49 -07001156 cherry_pick_marker = 'cherry picked from commit'
1157
1158 if end and cherry_pick_marker in end[-1]:
Vadim Bendebury20532ba2017-05-23 17:26:15 -07001159 # Cherry picked patches allow more tags in the last paragraph.
Vadim Bendebury6504aea2017-09-13 18:35:49 -07001160 allowed_tags += ['Commit-Queue', 'Commit-Ready', 'Reviewed-by',
1161 'Reviewed-on', 'Tested-by']
Vadim Bendebury20532ba2017-05-23 17:26:15 -07001162 end = end[:-1]
1163
Vadim Bendebury6504aea2017-09-13 18:35:49 -07001164 # Note that descriptions could have multiple cherry pick markers.
1165 tag_search = r'^(%s:|\(%s) ' % (':|'.join(allowed_tags), cherry_pick_marker)
Vadim Bendebury20532ba2017-05-23 17:26:15 -07001166
1167 if [x for x in end if not re.search(tag_search, x)]:
1168 return HookFailure('Only "%s:" tag(s) may follow the Change-Id.' %
1169 ':", "'.join(allowed_tags))
Mike Frysinger02b88bd2014-11-21 00:29:38 -05001170
Mike Frysinger8cf80812019-09-16 23:49:29 -04001171 return None
1172
Mandeep Singh Bainesa23eb5f2011-05-04 13:43:25 -07001173
Mike Frysinger36b2ebc2014-10-31 14:02:03 -04001174def _check_commit_message_style(_project, commit):
1175 """Verify that the commit message matches our style.
1176
1177 We do not check for BUG=/TEST=/etc... lines here as that is handled by other
1178 commit hooks.
1179 """
Mike Frysinger4efdee72019-11-04 10:57:01 -05001180 DOC = ('https://chromium.googlesource.com/chromiumos/docs/+/HEAD/'
1181 'contributing.md#Commit-messages')
1182 SEE_ALSO = 'Please review the documentation:\n%s' % (DOC,)
1183
Mike Frysinger36b2ebc2014-10-31 14:02:03 -04001184 desc = _get_commit_desc(commit)
1185
1186 # The first line should be by itself.
1187 lines = desc.splitlines()
1188 if len(lines) > 1 and lines[1]:
Mike Frysinger4efdee72019-11-04 10:57:01 -05001189 return HookFailure('The second line of the commit message must be blank.'
1190 '\n%s' % (SEE_ALSO,))
Mike Frysinger36b2ebc2014-10-31 14:02:03 -04001191
1192 # The first line should be one sentence.
1193 if '. ' in lines[0]:
Mike Frysinger4efdee72019-11-04 10:57:01 -05001194 return HookFailure('The first line cannot be more than one sentence.\n%s' %
1195 (SEE_ALSO,))
Mike Frysinger36b2ebc2014-10-31 14:02:03 -04001196
1197 # The first line cannot be too long.
1198 MAX_FIRST_LINE_LEN = 100
1199 if len(lines[0]) > MAX_FIRST_LINE_LEN:
Mike Frysinger4efdee72019-11-04 10:57:01 -05001200 return HookFailure('The first line must be less than %i chars.\n%s' %
1201 (MAX_FIRST_LINE_LEN, SEE_ALSO))
Mike Frysinger36b2ebc2014-10-31 14:02:03 -04001202
Mike Frysinger8cf80812019-09-16 23:49:29 -04001203 return None
1204
Mike Frysinger36b2ebc2014-10-31 14:02:03 -04001205
Filipe Brandenburger4b542b12015-10-09 12:46:31 -07001206def _check_cros_license(_project, commit, options=()):
Alex Deymof5792ce2015-08-24 22:50:08 -07001207 """Verifies the Chromium OS license/copyright header.
Ryan Cuiec4d6332011-05-02 14:15:25 -07001208
Mike Frysinger98638102014-08-28 00:15:08 -04001209 Should be following the spec:
1210 http://dev.chromium.org/developers/coding-style#TOC-File-headers
1211 """
1212 # For older years, be a bit more flexible as our policy says leave them be.
1213 LICENSE_HEADER = (
Keigo Oka7e880ac2019-07-03 15:03:43 +09001214 r'.*Copyright(?: \(c\))? (20[0-9]{2})(?:-20[0-9]{2})? The Chromium OS '
1215 r'Authors\. All rights reserved\.\n'
Brian Norris68838dd2018-09-26 18:30:24 -07001216 r'.*Use of this source code is governed by a BSD-style license that can '
Mike Frysingerb81102f2014-11-21 00:33:35 -05001217 r'be\n'
Brian Norris68838dd2018-09-26 18:30:24 -07001218 r'.*found in the LICENSE file\.'
Mike Frysingerb81102f2014-11-21 00:33:35 -05001219 r'\n'
Mike Frysinger98638102014-08-28 00:15:08 -04001220 )
1221 license_re = re.compile(LICENSE_HEADER, re.MULTILINE)
1222
1223 # For newer years, be stricter.
Keigo Oka7e880ac2019-07-03 15:03:43 +09001224 BAD_COPYRIGHT_LINE = (
Brian Norris68838dd2018-09-26 18:30:24 -07001225 r'.*Copyright \(c\) 20(1[5-9]|[2-9][0-9]) The Chromium OS Authors\. '
Mike Frysingerb81102f2014-11-21 00:33:35 -05001226 r'All rights reserved\.' r'\n'
Mike Frysinger98638102014-08-28 00:15:08 -04001227 )
Keigo Oka7e880ac2019-07-03 15:03:43 +09001228 bad_copyright_re = re.compile(BAD_COPYRIGHT_LINE)
Mike Frysinger98638102014-08-28 00:15:08 -04001229
Shuhei Takahashiabc20f32017-07-10 19:35:45 +09001230 included, excluded = _parse_common_inclusion_options(options)
Filipe Brandenburger4b542b12015-10-09 12:46:31 -07001231
Mike Frysinger98638102014-08-28 00:15:08 -04001232 bad_files = []
1233 bad_copyright_files = []
Keigo Oka7e880ac2019-07-03 15:03:43 +09001234 bad_year_files = []
1235
Ken Turnerd07564b2018-02-08 17:57:59 +11001236 files = _filter_files(
1237 _get_affected_files(commit, relative=True),
1238 included + COMMON_INCLUDED_PATHS,
1239 excluded + COMMON_EXCLUDED_PATHS + LICENSE_EXCLUDED_PATHS)
Keigo Oka7e880ac2019-07-03 15:03:43 +09001240 existing_files = set(_get_affected_files(commit, relative=True,
1241 include_adds=False))
Mike Frysinger98638102014-08-28 00:15:08 -04001242
Keigo Oka7e880ac2019-07-03 15:03:43 +09001243 current_year = str(datetime.datetime.now().year)
Mike Frysinger98638102014-08-28 00:15:08 -04001244 for f in files:
1245 contents = _get_file_content(f, commit)
1246 if not contents:
1247 # Ignore empty files.
1248 continue
1249
Keigo Oka7e880ac2019-07-03 15:03:43 +09001250 m = license_re.search(contents)
1251 if not m:
Mike Frysinger98638102014-08-28 00:15:08 -04001252 bad_files.append(f)
Keigo Oka7e880ac2019-07-03 15:03:43 +09001253 elif bad_copyright_re.search(contents):
Mike Frysinger98638102014-08-28 00:15:08 -04001254 bad_copyright_files.append(f)
1255
Keigo Oka7e880ac2019-07-03 15:03:43 +09001256 if m and f not in existing_files:
1257 year = m.group(1)
1258 if year != current_year:
1259 bad_year_files.append(f)
1260
1261 errors = []
Mike Frysinger98638102014-08-28 00:15:08 -04001262 if bad_files:
1263 msg = '%s:\n%s\n%s' % (
1264 'License must match', license_re.pattern,
1265 'Found a bad header in these files:')
Keigo Oka7e880ac2019-07-03 15:03:43 +09001266 errors.append(HookFailure(msg, bad_files))
Mike Frysinger98638102014-08-28 00:15:08 -04001267 if bad_copyright_files:
1268 msg = 'Do not use (c) in copyright headers in new files:'
Keigo Oka7e880ac2019-07-03 15:03:43 +09001269 errors.append(HookFailure(msg, bad_copyright_files))
1270 if bad_year_files:
1271 msg = 'Use current year (%s) in copyright headers in new files:' % (
1272 current_year)
1273 errors.append(HookFailure(msg, bad_year_files))
Ryan Cuiec4d6332011-05-02 14:15:25 -07001274
Keigo Oka7e880ac2019-07-03 15:03:43 +09001275 return errors
Ryan Cuiec4d6332011-05-02 14:15:25 -07001276
Mike Frysinger8cf80812019-09-16 23:49:29 -04001277
Amin Hassani391efa92018-01-26 17:58:05 -08001278def _check_aosp_license(_project, commit, options=()):
Alex Deymof5792ce2015-08-24 22:50:08 -07001279 """Verifies the AOSP license/copyright header.
1280
1281 AOSP uses the Apache2 License:
1282 https://source.android.com/source/licenses.html
1283 """
1284 LICENSE_HEADER = (
1285 r"""^[#/\*]*
1286[#/\*]* ?Copyright( \([cC]\))? 20[-0-9]{2,7} The Android Open Source Project
1287[#/\*]* ?
1288[#/\*]* ?Licensed under the Apache License, Version 2.0 \(the "License"\);
1289[#/\*]* ?you may not use this file except in compliance with the License\.
1290[#/\*]* ?You may obtain a copy of the License at
1291[#/\*]* ?
1292[#/\*]* ? http://www\.apache\.org/licenses/LICENSE-2\.0
1293[#/\*]* ?
1294[#/\*]* ?Unless required by applicable law or agreed to in writing, software
1295[#/\*]* ?distributed under the License is distributed on an "AS IS" BASIS,
1296[#/\*]* ?WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or """
1297 r"""implied\.
1298[#/\*]* ?See the License for the specific language governing permissions and
1299[#/\*]* ?limitations under the License\.
1300[#/\*]*$
1301"""
1302 )
1303 license_re = re.compile(LICENSE_HEADER, re.MULTILINE)
1304
Amin Hassani391efa92018-01-26 17:58:05 -08001305 included, excluded = _parse_common_inclusion_options(options)
1306
Ken Turnerd07564b2018-02-08 17:57:59 +11001307 files = _filter_files(
1308 _get_affected_files(commit, relative=True),
1309 included + COMMON_INCLUDED_PATHS,
1310 excluded + COMMON_EXCLUDED_PATHS + LICENSE_EXCLUDED_PATHS)
Alex Deymof5792ce2015-08-24 22:50:08 -07001311
1312 bad_files = []
1313 for f in files:
1314 contents = _get_file_content(f, commit)
1315 if not contents:
1316 # Ignore empty files.
1317 continue
1318
1319 if not license_re.search(contents):
1320 bad_files.append(f)
1321
1322 if bad_files:
1323 msg = ('License must match:\n%s\nFound a bad header in these files:' %
1324 license_re.pattern)
1325 return HookFailure(msg, bad_files)
Mike Frysinger8cf80812019-09-16 23:49:29 -04001326 return None
Alex Deymof5792ce2015-08-24 22:50:08 -07001327
1328
Mike Frysinger998c2cc2014-08-27 05:20:23 -04001329def _check_layout_conf(_project, commit):
1330 """Verifies the metadata/layout.conf file."""
1331 repo_name = 'profiles/repo_name'
Mike Frysinger94a670c2014-09-19 12:46:26 -04001332 repo_names = []
Mike Frysinger998c2cc2014-08-27 05:20:23 -04001333 layout_path = 'metadata/layout.conf'
Mike Frysinger94a670c2014-09-19 12:46:26 -04001334 layout_paths = []
Mike Frysinger998c2cc2014-08-27 05:20:23 -04001335
Mike Frysinger94a670c2014-09-19 12:46:26 -04001336 # Handle multiple overlays in a single commit (like the public tree).
1337 for f in _get_affected_files(commit, relative=True):
1338 if f.endswith(repo_name):
1339 repo_names.append(f)
1340 elif f.endswith(layout_path):
1341 layout_paths.append(f)
Mike Frysinger998c2cc2014-08-27 05:20:23 -04001342
1343 # Disallow new repos with the repo_name file.
Mike Frysinger94a670c2014-09-19 12:46:26 -04001344 if repo_names:
Mike Frysinger998c2cc2014-08-27 05:20:23 -04001345 return HookFailure('%s: use "repo-name" in %s instead' %
Mike Frysinger94a670c2014-09-19 12:46:26 -04001346 (repo_names, layout_path))
Mike Frysinger998c2cc2014-08-27 05:20:23 -04001347
Mike Frysinger94a670c2014-09-19 12:46:26 -04001348 # Gather all the errors in one pass so we show one full message.
1349 all_errors = {}
1350 for layout_path in layout_paths:
1351 all_errors[layout_path] = errors = []
Mike Frysinger998c2cc2014-08-27 05:20:23 -04001352
Mike Frysinger94a670c2014-09-19 12:46:26 -04001353 # Make sure the config file is sorted.
1354 data = [x for x in _get_file_content(layout_path, commit).splitlines()
1355 if x and x[0] != '#']
1356 if sorted(data) != data:
1357 errors += ['keep lines sorted']
Mike Frysinger998c2cc2014-08-27 05:20:23 -04001358
Mike Frysinger94a670c2014-09-19 12:46:26 -04001359 # Require people to set specific values all the time.
1360 settings = (
1361 # TODO: Enable this for everyone. http://crbug.com/408038
Shuhei Takahashi3cbb8dd2019-10-29 12:37:11 +09001362 # ('fast caching', 'cache-format = md5-dict'),
Mike Frysinger94a670c2014-09-19 12:46:26 -04001363 ('fast manifests', 'thin-manifests = true'),
Mike Frysingerd7734522015-02-26 16:12:43 -05001364 ('extra features', 'profile-formats = portage-2 profile-default-eapi'),
1365 ('newer eapi', 'profile_eapi_when_unspecified = 5-progress'),
Mike Frysinger94a670c2014-09-19 12:46:26 -04001366 )
1367 for reason, line in settings:
1368 if line not in data:
1369 errors += ['enable %s with: %s' % (reason, line)]
Mike Frysinger998c2cc2014-08-27 05:20:23 -04001370
Mike Frysinger94a670c2014-09-19 12:46:26 -04001371 # Require one of these settings.
Mike Frysinger5fae62d2015-11-11 20:12:15 -05001372 if 'use-manifests = strict' not in data:
1373 errors += ['enable file checking with: use-manifests = strict']
Mike Frysinger998c2cc2014-08-27 05:20:23 -04001374
Mike Frysinger94a670c2014-09-19 12:46:26 -04001375 # Require repo-name to be set.
Mike Frysinger324cf682014-09-22 15:52:50 -04001376 for line in data:
1377 if line.startswith('repo-name = '):
1378 break
1379 else:
Mike Frysinger94a670c2014-09-19 12:46:26 -04001380 errors += ['set the board name with: repo-name = $BOARD']
Mike Frysinger998c2cc2014-08-27 05:20:23 -04001381
Mike Frysinger94a670c2014-09-19 12:46:26 -04001382 # Summarize all the errors we saw (if any).
1383 lines = ''
1384 for layout_path, errors in all_errors.items():
1385 if errors:
1386 lines += '\n\t- '.join(['\n* %s:' % layout_path] + errors)
1387 if lines:
1388 lines = 'See the portage(5) man page for layout.conf details' + lines + '\n'
1389 return HookFailure(lines)
Mike Frysinger998c2cc2014-08-27 05:20:23 -04001390
Mike Frysinger8cf80812019-09-16 23:49:29 -04001391 return None
1392
Mike Frysinger998c2cc2014-08-27 05:20:23 -04001393
Keigo Oka4a09bd92019-05-07 14:01:00 +09001394def _check_no_new_gyp(_project, commit):
1395 """Verifies no project starts to use GYP."""
1396 whitelist = [
Keigo Oka4a09bd92019-05-07 14:01:00 +09001397 'chromeos/ap',
1398 'chromeos/ap-daemons',
Keigo Oka150a6fd2019-06-04 11:30:25 +09001399 'chromeos/ap/security',
1400 'chromeos/ap/wireless',
Keigo Oka4a09bd92019-05-07 14:01:00 +09001401 'chromeos/platform/actions',
Keigo Oka4a09bd92019-05-07 14:01:00 +09001402 'chromeos/platform/drivefs-google3',
1403 'chromeos/platform/experimental-touch-fw',
Keigo Oka4a09bd92019-05-07 14:01:00 +09001404 'chromeos/thermald',
Keigo Oka4a09bd92019-05-07 14:01:00 +09001405 'chromiumos/platform2',
Keigo Oka4a09bd92019-05-07 14:01:00 +09001406 'weave/libweave',
1407 ]
1408 if _project.name in whitelist:
1409 return None
1410
1411 gypfiles = _filter_files(
1412 _get_affected_files(commit, include_symlinks=True, relative=True),
1413 [r'\.gyp$'])
1414
1415 if gypfiles:
1416 return HookFailure('GYP is deprecated and not allowed in a new project:',
1417 gypfiles)
Mike Frysinger8cf80812019-09-16 23:49:29 -04001418 return None
Keigo Oka4a09bd92019-05-07 14:01:00 +09001419
1420
Ryan Cuiec4d6332011-05-02 14:15:25 -07001421# Project-specific hooks
Mandeep Singh Baines116ad102011-04-27 15:16:37 -07001422
Ryan Cui1562fb82011-05-09 11:01:31 -07001423
Luis Hector Chavezb50391d2017-09-26 15:48:15 -07001424def _check_clang_format(_project, commit, options=()):
1425 """Runs clang-format on the given project"""
1426 hooks_dir = _get_hooks_dir()
1427 options = list(options)
1428 if commit == PRE_SUBMIT:
1429 options.append('--commit=HEAD')
1430 else:
1431 options.extend(['--commit', commit])
Brian Norris0c62a142018-12-11 13:24:29 -08001432 cmd = [os.path.join(hooks_dir, 'clang-format.py')] + options
Mike Frysinger7bb709f2019-09-29 23:20:12 -04001433 cmd_result = cros_build_lib.run(cmd,
1434 print_cmd=False,
1435 stdout=True,
1436 encoding='utf-8',
1437 errors='replace',
1438 combine_stdout_stderr=True,
1439 check=False)
Luis Hector Chavezb50391d2017-09-26 15:48:15 -07001440 if cmd_result.returncode:
1441 return HookFailure('clang-format.py errors/warnings\n\n' +
Mike Frysinger7bb709f2019-09-29 23:20:12 -04001442 cmd_result.stdout)
Mike Frysinger8cf80812019-09-16 23:49:29 -04001443 return None
Luis Hector Chavezb50391d2017-09-26 15:48:15 -07001444
1445
Mike Frysingerae409522014-02-01 03:16:11 -05001446def _run_checkpatch(_project, commit, options=()):
Mandeep Singh Baines116ad102011-04-27 15:16:37 -07001447 """Runs checkpatch.pl on the given project"""
1448 hooks_dir = _get_hooks_dir()
Vadim Bendebury2b62d742014-06-22 13:14:51 -07001449 options = list(options)
1450 if commit == PRE_SUBMIT:
1451 # The --ignore option must be present and include 'MISSING_SIGN_OFF' in
1452 # this case.
1453 options.append('--ignore=MISSING_SIGN_OFF')
Filipe Brandenburger28d48d62015-10-07 09:48:54 -07001454 # Always ignore the check for the MAINTAINERS file. We do not track that
1455 # information on that file in our source trees, so let's suppress the
1456 # warning.
1457 options.append('--ignore=FILE_PATH_CHANGES')
Filipe Brandenburgerce978322015-10-09 10:04:15 -07001458 # Do not complain about the Change-Id: fields, since we use Gerrit.
1459 # Upstream does not want those lines (since they do not use Gerrit), but
1460 # we always do, so disable the check globally.
Daisuke Nojiri4844f892015-10-08 09:54:33 -07001461 options.append('--ignore=GERRIT_CHANGE_ID')
Brian Norris0c62a142018-12-11 13:24:29 -08001462 cmd = [os.path.join(hooks_dir, 'checkpatch.pl')] + options + ['-']
Mike Frysinger7bb709f2019-09-29 23:20:12 -04001463 cmd_result = cros_build_lib.run(
1464 cmd, print_cmd=False, input=_get_patch(commit).encode('utf-8'),
1465 stdout=True, combine_stdout_stderr=True, check=False, encoding='utf-8',
1466 errors='replace')
Rahul Chaudhry0e515342015-08-07 12:00:43 -07001467 if cmd_result.returncode:
Mike Frysinger7bb709f2019-09-29 23:20:12 -04001468 return HookFailure('checkpatch.pl errors/warnings\n\n' + cmd_result.stdout)
Mike Frysinger8cf80812019-09-16 23:49:29 -04001469 return None
Ryan Cuiec4d6332011-05-02 14:15:25 -07001470
Mandeep Singh Baines116ad102011-04-27 15:16:37 -07001471
Brian Norris23c62e92018-11-14 12:25:51 -08001472def _run_kerneldoc(_project, commit, options=()):
1473 """Runs kernel-doc validator on the given project"""
1474 included, excluded = _parse_common_inclusion_options(options)
1475 files = _filter_files(_get_affected_files(commit, relative=True),
1476 included, excluded)
1477 if files:
1478 hooks_dir = _get_hooks_dir()
Brian Norris0c62a142018-12-11 13:24:29 -08001479 cmd = [os.path.join(hooks_dir, 'kernel-doc'), '-none'] + files
Mike Frysinger7bb709f2019-09-29 23:20:12 -04001480 output = _run_command(cmd, combine_stdout_stderr=True)
Brian Norris23c62e92018-11-14 12:25:51 -08001481 if output:
Brian Norris0c62a142018-12-11 13:24:29 -08001482 return HookFailure('kernel-doc errors/warnings:',
1483 items=output.splitlines())
Mike Frysinger8cf80812019-09-16 23:49:29 -04001484 return None
Brian Norris23c62e92018-11-14 12:25:51 -08001485
1486
Mike Frysingerae409522014-02-01 03:16:11 -05001487def _kernel_configcheck(_project, commit):
Olof Johanssona96810f2012-09-04 16:20:03 -07001488 """Makes sure kernel config changes are not mixed with code changes"""
1489 files = _get_affected_files(commit)
1490 if not len(_filter_files(files, [r'chromeos/config'])) in [0, len(files)]:
1491 return HookFailure('Changes to chromeos/config/ and regular files must '
1492 'be in separate commits:\n%s' % '\n'.join(files))
Mike Frysinger8cf80812019-09-16 23:49:29 -04001493 return None
Anton Staaf815d6852011-08-22 10:08:45 -07001494
Mike Frysingerae409522014-02-01 03:16:11 -05001495
1496def _run_json_check(_project, commit):
Dale Curtis2975c432011-05-03 17:25:20 -07001497 """Checks that all JSON files are syntactically valid."""
Mike Frysinger908be682018-01-04 02:21:50 -05001498 ret = []
1499
1500 files = _filter_files(_get_affected_files(commit, relative=True),
1501 [r'.*\.json$'])
1502 for f in files:
1503 data = _get_file_content(f, commit)
Dale Curtis2975c432011-05-03 17:25:20 -07001504 try:
Mike Frysinger908be682018-01-04 02:21:50 -05001505 json.loads(data)
1506 except Exception as e:
1507 ret.append('%s: Invalid JSON: %s' % (f, e))
1508
1509 if ret:
1510 return HookFailure('\n'.join(ret))
Mike Frysinger8cf80812019-09-16 23:49:29 -04001511 return None
Dale Curtis2975c432011-05-03 17:25:20 -07001512
1513
Mike Frysingerae409522014-02-01 03:16:11 -05001514def _check_manifests(_project, commit):
Mike Frysingeraae3cb52018-01-03 16:49:33 -05001515 """Make sure Manifest files only have comments & DIST lines."""
1516 ret = []
Mike Frysinger52b537e2013-08-22 22:59:53 -04001517
Mike Frysingeraae3cb52018-01-03 16:49:33 -05001518 manifests = _filter_files(_get_affected_files(commit, relative=True),
1519 [r'.*/Manifest$'])
1520 for path in manifests:
1521 data = _get_file_content(path, commit)
1522
1523 # Disallow blank files.
1524 if not data.strip():
1525 ret.append('%s: delete empty file' % (path,))
Mike Frysinger52b537e2013-08-22 22:59:53 -04001526 continue
1527
Mike Frysingeraae3cb52018-01-03 16:49:33 -05001528 # Make sure the last newline isn't omitted.
1529 if data[-1] != '\n':
1530 ret.append('%s: missing trailing newline' % (path,))
Mike Frysinger52b537e2013-08-22 22:59:53 -04001531
Mike Frysingeraae3cb52018-01-03 16:49:33 -05001532 # Do not allow leading or trailing blank lines.
1533 lines = data.splitlines()
1534 if not lines[0]:
1535 ret.append('%s: delete leading blank lines' % (path,))
1536 if not lines[-1]:
1537 ret.append('%s: delete trailing blank lines' % (path,))
1538
1539 for line in lines:
1540 # Disallow leading/trailing whitespace.
1541 if line != line.strip():
1542 ret.append('%s: remove leading/trailing whitespace: %s' % (path, line))
1543
1544 # Allow blank lines & comments.
1545 line = line.split('#', 1)[0]
1546 if not line:
1547 continue
1548
1549 # All other linse should start with DIST.
1550 if not line.startswith('DIST '):
1551 ret.append('%s: remove non-DIST lines: %s' % (path, line))
1552 break
1553
1554 if ret:
1555 return HookFailure('\n'.join(ret))
Mike Frysinger8cf80812019-09-16 23:49:29 -04001556 return None
Mike Frysinger52b537e2013-08-22 22:59:53 -04001557
1558
Mike Frysingerae409522014-02-01 03:16:11 -05001559def _check_change_has_branch_field(_project, commit):
Puneet Kumarc80e3f62012-08-13 19:01:18 -07001560 """Check for a non-empty 'BRANCH=' field in the commit message."""
Vadim Bendebury2b62d742014-06-22 13:14:51 -07001561 if commit == PRE_SUBMIT:
Mike Frysinger8cf80812019-09-16 23:49:29 -04001562 return None
Puneet Kumarc80e3f62012-08-13 19:01:18 -07001563 BRANCH_RE = r'\nBRANCH=\S+'
1564
1565 if not re.search(BRANCH_RE, _get_commit_desc(commit)):
1566 msg = ('Changelist description needs BRANCH field (after first line)\n'
1567 'E.g. BRANCH=none or BRANCH=link,snow')
1568 return HookFailure(msg)
Mike Frysinger8cf80812019-09-16 23:49:29 -04001569 return None
Puneet Kumarc80e3f62012-08-13 19:01:18 -07001570
1571
Mike Frysinger45334bd2019-11-04 10:42:33 -05001572def _check_change_has_no_branch_field(_project, commit):
1573 """Verify 'BRANCH=' field does not exist in the commit message."""
1574 if commit == PRE_SUBMIT:
1575 return None
1576 BRANCH_RE = r'\nBRANCH=\S+'
1577
1578 if re.search(BRANCH_RE, _get_commit_desc(commit)):
1579 msg = 'This checkout does not use BRANCH= fields. Delete them.'
1580 return HookFailure(msg)
1581 return None
1582
1583
Mike Frysingerae409522014-02-01 03:16:11 -05001584def _check_change_has_signoff_field(_project, commit):
Shawn Nematbakhsh51e16ac2014-01-28 15:31:07 -08001585 """Check for a non-empty 'Signed-off-by:' field in the commit message."""
Vadim Bendebury2b62d742014-06-22 13:14:51 -07001586 if commit == PRE_SUBMIT:
Mike Frysinger8cf80812019-09-16 23:49:29 -04001587 return None
Shawn Nematbakhsh51e16ac2014-01-28 15:31:07 -08001588 SIGNOFF_RE = r'\nSigned-off-by: \S+'
1589
1590 if not re.search(SIGNOFF_RE, _get_commit_desc(commit)):
1591 msg = ('Changelist description needs Signed-off-by: field\n'
1592 'E.g. Signed-off-by: My Name <me@chromium.org>')
1593 return HookFailure(msg)
Mike Frysinger8cf80812019-09-16 23:49:29 -04001594 return None
Shawn Nematbakhsh51e16ac2014-01-28 15:31:07 -08001595
1596
Mike Frysinger9ab64b12019-11-04 10:53:08 -05001597def _check_change_has_no_signoff_field(_project, commit):
1598 """Verify 'Signed-off-by:' field does not exist in the commit message."""
1599 if commit == PRE_SUBMIT:
1600 return None
1601 SIGNOFF_RE = r'\nSigned-off-by: \S+'
1602
1603 if re.search(SIGNOFF_RE, _get_commit_desc(commit)):
1604 msg = 'This checkout does not use Signed-off-by: tags. Delete them.'
1605 return HookFailure(msg)
1606 return None
1607
1608
Aviv Keshet5ac59522017-01-31 14:28:27 -08001609def _check_cq_ini_well_formed(_project, commit):
1610 """Check that any modified COMMIT-QUEUE.ini files are well formed."""
1611 pattern = '.*' + constants.CQ_CONFIG_FILENAME
Mike Frysingerd0523442018-01-03 17:05:29 -05001612 files = _filter_files(_get_affected_files(commit, relative=True), (pattern,))
Aviv Keshet5ac59522017-01-31 14:28:27 -08001613
1614 # TODO(akeshet): Check not only that the file is parseable, but that all the
1615 # pre-cq configs it requests are existing ones.
1616 for f in files:
1617 try:
Mike Frysinger7bfc89f2019-09-13 15:45:51 -04001618 parser = configparser.SafeConfigParser()
Aviv Keshet5ac59522017-01-31 14:28:27 -08001619 # Prior to python3, ConfigParser has no read_string method, so we must
1620 # pass it either a file path or file like object. And we must use
1621 # _get_file_content to fetch file contents to ensure we are examining the
1622 # commit diff, rather than whatever's on disk.
Mike Frysinger7bfc89f2019-09-13 15:45:51 -04001623 # TODO(vapier): Once we migrate this to Python 3 only, cut it over.
Aviv Keshet5ac59522017-01-31 14:28:27 -08001624 contents = _get_file_content(f, commit)
Mike Frysinger13302d42019-09-13 17:21:24 -04001625 parser.readfp(io.StringIO(contents))
Mike Frysinger7bfc89f2019-09-13 15:45:51 -04001626 except configparser.Error as e:
Aviv Keshet5ac59522017-01-31 14:28:27 -08001627 msg = ('Unable to parse COMMIT-QUEUE.ini file at %s due to %s.' %
1628 (f, e))
1629 return HookFailure(msg)
1630
Mike Frysinger8cf80812019-09-16 23:49:29 -04001631 return None
1632
Aviv Keshet5ac59522017-01-31 14:28:27 -08001633
Jon Salz3ee59de2012-08-18 13:54:22 +08001634def _run_project_hook_script(script, project, commit):
1635 """Runs a project hook script.
1636
1637 The script is run with the following environment variables set:
1638 PRESUBMIT_PROJECT: The affected project
1639 PRESUBMIT_COMMIT: The affected commit
1640 PRESUBMIT_FILES: A newline-separated list of affected files
1641
1642 The script is considered to fail if the exit code is non-zero. It should
1643 write an error message to stdout.
1644 """
1645 env = dict(os.environ)
Alex Deymo643ac4c2015-09-03 10:40:50 -07001646 env['PRESUBMIT_PROJECT'] = project.name
Jon Salz3ee59de2012-08-18 13:54:22 +08001647 env['PRESUBMIT_COMMIT'] = commit
1648
1649 # Put affected files in an environment variable
1650 files = _get_affected_files(commit)
1651 env['PRESUBMIT_FILES'] = '\n'.join(files)
1652
Mike Frysinger7bb709f2019-09-29 23:20:12 -04001653 cmd_result = cros_build_lib.run(cmd=script,
1654 env=env,
1655 shell=True,
1656 print_cmd=False,
1657 input=os.devnull,
1658 stdout=True,
1659 encoding='utf-8',
1660 errors='replace',
1661 combine_stdout_stderr=True,
1662 check=False)
Rahul Chaudhry0e515342015-08-07 12:00:43 -07001663 if cmd_result.returncode:
Mike Frysinger7bb709f2019-09-29 23:20:12 -04001664 stdout = cmd_result.stdout
Jon Salz7b618af2012-08-31 06:03:16 +08001665 if stdout:
1666 stdout = re.sub('(?m)^', ' ', stdout)
1667 return HookFailure('Hook script "%s" failed with code %d%s' %
Rahul Chaudhry0e515342015-08-07 12:00:43 -07001668 (script, cmd_result.returncode,
Jon Salz3ee59de2012-08-18 13:54:22 +08001669 ':\n' + stdout if stdout else ''))
Mike Frysinger8cf80812019-09-16 23:49:29 -04001670 return None
Jon Salz3ee59de2012-08-18 13:54:22 +08001671
1672
Bertrand SIMONNET0022fff2014-07-07 09:52:15 -07001673def _check_project_prefix(_project, commit):
Mike Frysinger55f85b52014-12-18 14:45:21 -05001674 """Require the commit message have a project specific prefix as needed."""
Bertrand SIMONNET0022fff2014-07-07 09:52:15 -07001675
Brian Norris77608e12018-04-06 10:38:43 -07001676 files = _get_affected_files(commit, include_deletes=True, relative=True)
Bertrand SIMONNET0022fff2014-07-07 09:52:15 -07001677 prefix = os.path.commonprefix(files)
1678 prefix = os.path.dirname(prefix)
1679
1680 # If there is no common prefix, the CL span multiple projects.
Daniel Erata350fd32014-09-29 14:02:34 -07001681 if not prefix:
Mike Frysinger8cf80812019-09-16 23:49:29 -04001682 return None
Bertrand SIMONNET0022fff2014-07-07 09:52:15 -07001683
1684 project_name = prefix.split('/')[0]
Daniel Erata350fd32014-09-29 14:02:34 -07001685
1686 # The common files may all be within a subdirectory of the main project
1687 # directory, so walk up the tree until we find an alias file.
1688 # _get_affected_files() should return relative paths, but check against '/' to
1689 # ensure that this loop terminates even if it receives an absolute path.
1690 while prefix and prefix != '/':
1691 alias_file = os.path.join(prefix, '.project_alias')
1692
1693 # If an alias exists, use it.
1694 if os.path.isfile(alias_file):
1695 project_name = osutils.ReadFile(alias_file).strip()
1696
1697 prefix = os.path.dirname(prefix)
Bertrand SIMONNET0022fff2014-07-07 09:52:15 -07001698
1699 if not _get_commit_desc(commit).startswith(project_name + ': '):
1700 return HookFailure('The commit title for changes affecting only %s'
1701 ' should start with \"%s: \"'
1702 % (project_name, project_name))
Mike Frysinger8cf80812019-09-16 23:49:29 -04001703 return None
Bertrand SIMONNET0022fff2014-07-07 09:52:15 -07001704
1705
Satoru Takabayashi15d17a52018-08-06 11:12:15 +09001706def _check_filepath_chartype(_project, commit):
1707 """Checks that FilePath::CharType stuff is not used."""
1708
1709 FILEPATH_REGEXP = re.compile('|'.join(
1710 [r'(?:base::)?FilePath::(?:Char|String|StringPiece)Type',
Satoru Takabayashi4ca37922018-08-08 10:16:38 +09001711 r'(?:base::)?FilePath::FromUTF8Unsafe',
1712 r'AsUTF8Unsafe',
Satoru Takabayashi15d17a52018-08-06 11:12:15 +09001713 r'FILE_PATH_LITERAL']))
1714 files = _filter_files(_get_affected_files(commit, relative=True),
1715 [r'.*\.(cc|h)$'])
1716
1717 errors = []
1718 for afile in files:
1719 for line_num, line in _get_file_diff(afile, commit):
1720 m = re.search(FILEPATH_REGEXP, line)
1721 if m:
1722 errors.append('%s, line %s has %s' % (afile, line_num, m.group(0)))
1723
1724 if errors:
1725 msg = 'Please assume FilePath::CharType is char (crbug.com/870621):'
1726 return HookFailure(msg, errors)
Mike Frysinger8cf80812019-09-16 23:49:29 -04001727 return None
Satoru Takabayashi15d17a52018-08-06 11:12:15 +09001728
1729
Mike Frysingerf9d41b32017-02-23 15:20:04 -05001730def _check_exec_files(_project, commit):
1731 """Make +x bits on files."""
1732 # List of files that should never be +x.
1733 NO_EXEC = (
1734 'ChangeLog*',
1735 'COPYING',
1736 'make.conf',
1737 'make.defaults',
1738 'Manifest',
1739 'OWNERS',
1740 'package.use',
1741 'package.keywords',
1742 'package.mask',
1743 'parent',
1744 'README',
1745 'TODO',
1746 '.gitignore',
1747 '*.[achly]',
1748 '*.[ch]xx',
1749 '*.boto',
1750 '*.cc',
1751 '*.cfg',
1752 '*.conf',
1753 '*.config',
1754 '*.cpp',
1755 '*.css',
1756 '*.ebuild',
1757 '*.eclass',
Tatsuhisa Yamaguchi3b053632019-01-10 14:45:14 +09001758 '*.gn',
1759 '*.gni',
Mike Frysingerf9d41b32017-02-23 15:20:04 -05001760 '*.gyp',
1761 '*.gypi',
1762 '*.htm',
1763 '*.html',
1764 '*.ini',
1765 '*.js',
1766 '*.json',
1767 '*.md',
1768 '*.mk',
1769 '*.patch',
1770 '*.policy',
1771 '*.proto',
1772 '*.raw',
1773 '*.rules',
1774 '*.service',
1775 '*.target',
1776 '*.txt',
1777 '*.xml',
1778 '*.yaml',
1779 )
1780
1781 def FinalName(obj):
1782 # If the file is being deleted, then the dst_file is not set.
1783 if obj.dst_file is None:
1784 return obj.src_file
1785 else:
1786 return obj.dst_file
1787
1788 bad_files = []
1789 files = _get_affected_files(commit, relative=True, full_details=True)
1790 for f in files:
1791 mode = int(f.dst_mode, 8)
1792 if not mode & 0o111:
1793 continue
1794 name = FinalName(f)
1795 for no_exec in NO_EXEC:
1796 if fnmatch.fnmatch(name, no_exec):
1797 bad_files.append(name)
1798 break
1799
1800 if bad_files:
1801 return HookFailure('These files should not be executable. '
1802 'Please `chmod -x` them.', bad_files)
Mike Frysinger8cf80812019-09-16 23:49:29 -04001803 return None
Mike Frysingerf9d41b32017-02-23 15:20:04 -05001804
1805
Mandeep Singh Baines116ad102011-04-27 15:16:37 -07001806# Base
1807
Vadim Bendebury2b62d742014-06-22 13:14:51 -07001808# A list of hooks which are not project specific and check patch description
1809# (as opposed to patch body).
1810_PATCH_DESCRIPTION_HOOKS = [
Ryan Cui9b651632011-05-11 11:38:58 -07001811 _check_change_has_bug_field,
David Jamesc3b68b32013-04-03 09:17:03 -07001812 _check_change_has_valid_cq_depend,
Ryan Cui9b651632011-05-11 11:38:58 -07001813 _check_change_has_test_field,
1814 _check_change_has_proper_changeid,
Mike Frysinger36b2ebc2014-10-31 14:02:03 -04001815 _check_commit_message_style,
Bernie Thompsonf8fea992016-01-14 10:27:18 -08001816 _check_change_is_contribution,
Jack Neus8edbf642019-07-10 16:08:31 -06001817 _check_change_no_include_oem,
Vadim Bendebury2b62d742014-06-22 13:14:51 -07001818]
1819
Vadim Bendebury2b62d742014-06-22 13:14:51 -07001820# A list of hooks that are not project-specific
1821_COMMON_HOOKS = [
Aviv Keshet5ac59522017-01-31 14:28:27 -08001822 _check_cq_ini_well_formed,
1823 _check_cros_license,
Mike Frysingerbf8b91c2014-02-01 02:50:27 -05001824 _check_ebuild_eapi,
Mike Frysinger89bdb852014-02-01 05:26:26 -05001825 _check_ebuild_keywords,
Yu-Ju Hong5e0efa72013-11-19 16:28:10 -08001826 _check_ebuild_licenses,
Mike Frysingercd363c82014-02-01 05:20:18 -05001827 _check_ebuild_virtual_pv,
Mike Frysingerf9d41b32017-02-23 15:20:04 -05001828 _check_exec_files,
Daniel Erat9d203ff2015-02-17 10:12:21 -07001829 _check_for_uprev,
Rahul Chaudhry09f61372015-07-31 17:14:26 -07001830 _check_gofmt,
Mike Frysinger998c2cc2014-08-27 05:20:23 -04001831 _check_layout_conf,
Daniel Erat9d203ff2015-02-17 10:12:21 -07001832 _check_no_long_lines,
Keigo Oka4a09bd92019-05-07 14:01:00 +09001833 _check_no_new_gyp,
Daniel Erat9d203ff2015-02-17 10:12:21 -07001834 _check_no_stray_whitespace,
Ryan Cui9b651632011-05-11 11:38:58 -07001835 _check_no_tabs,
Daniel Erat9d203ff2015-02-17 10:12:21 -07001836 _check_portage_make_use_var,
Fletcher Woodruffce1cb1b2019-08-16 15:59:32 -06001837 _check_rustfmt,
Aviv Keshet5ac59522017-01-31 14:28:27 -08001838 _check_tabbed_indents,
Ryan Cui9b651632011-05-11 11:38:58 -07001839]
Ryan Cuiec4d6332011-05-02 14:15:25 -07001840
Ryan Cui1562fb82011-05-09 11:01:31 -07001841
Ryan Cui9b651632011-05-11 11:38:58 -07001842# A dictionary of project-specific hooks(callbacks), indexed by project name.
1843# dict[project] = [callback1, callback2]
1844_PROJECT_SPECIFIC_HOOKS = {
Mike Frysinger24dd3c52019-08-17 14:22:48 -04001845 'chromiumos/third_party/kernel': [_kernel_configcheck],
1846 'chromiumos/third_party/kernel-next': [_kernel_configcheck],
Ryan Cui9b651632011-05-11 11:38:58 -07001847}
Mandeep Singh Baines116ad102011-04-27 15:16:37 -07001848
Ryan Cui1562fb82011-05-09 11:01:31 -07001849
Ryan Cui9b651632011-05-11 11:38:58 -07001850# A dictionary of flags (keys) that can appear in the config file, and the hook
Mike Frysinger3554bc92015-03-11 04:59:21 -04001851# that the flag controls (value).
1852_HOOK_FLAGS = {
Luis Hector Chavezb50391d2017-09-26 15:48:15 -07001853 'clang_format_check': _check_clang_format,
Mike Frysingera7642f52015-03-25 18:31:42 -04001854 'checkpatch_check': _run_checkpatch,
Brian Norris23c62e92018-11-14 12:25:51 -08001855 'kerneldoc_check': _run_kerneldoc,
Ryan Cui9b651632011-05-11 11:38:58 -07001856 'stray_whitespace_check': _check_no_stray_whitespace,
Mike Frysingerff6c7d62015-03-24 13:49:46 -04001857 'json_check': _run_json_check,
Ryan Cui9b651632011-05-11 11:38:58 -07001858 'long_line_check': _check_no_long_lines,
Alex Deymof5792ce2015-08-24 22:50:08 -07001859 'cros_license_check': _check_cros_license,
1860 'aosp_license_check': _check_aosp_license,
Ryan Cui9b651632011-05-11 11:38:58 -07001861 'tab_check': _check_no_tabs,
Prathmesh Prabhuc5254652016-12-22 12:58:05 -08001862 'tabbed_indent_required_check': _check_tabbed_indents,
Puneet Kumarc80e3f62012-08-13 19:01:18 -07001863 'branch_check': _check_change_has_branch_field,
Shawn Nematbakhsh51e16ac2014-01-28 15:31:07 -08001864 'signoff_check': _check_change_has_signoff_field,
Josh Triplett0e8fc7f2014-04-23 16:00:00 -07001865 'bug_field_check': _check_change_has_bug_field,
1866 'test_field_check': _check_change_has_test_field,
Steve Fung49ec7e92015-03-23 16:07:12 -07001867 'manifest_check': _check_manifests,
Bernie Thompsonf8fea992016-01-14 10:27:18 -08001868 'contribution_check': _check_change_is_contribution,
Mike Frysinger47bd1252018-06-11 12:12:20 -04001869 'project_prefix_check': _check_project_prefix,
Satoru Takabayashi15d17a52018-08-06 11:12:15 +09001870 'filepath_chartype_check': _check_filepath_chartype,
Ryan Cui9b651632011-05-11 11:38:58 -07001871}
1872
1873
Mike Frysinger3554bc92015-03-11 04:59:21 -04001874def _get_override_hooks(config):
1875 """Returns a set of hooks controlled by the current project's config file.
Ryan Cui9b651632011-05-11 11:38:58 -07001876
1877 Expects to be called within the project root.
Jon Salz3ee59de2012-08-18 13:54:22 +08001878
1879 Args:
1880 config: A ConfigParser for the project's config file.
Ryan Cui9b651632011-05-11 11:38:58 -07001881 """
1882 SECTION = 'Hook Overrides'
Mike Frysingerf8ce1712015-03-25 18:32:33 -04001883 SECTION_OPTIONS = 'Hook Overrides Options'
Jon Salz3ee59de2012-08-18 13:54:22 +08001884 if not config.has_section(SECTION):
Mike Frysinger3554bc92015-03-11 04:59:21 -04001885 return set(), set()
Ryan Cui9b651632011-05-11 11:38:58 -07001886
Mike Frysinger56e8de02019-07-31 14:40:14 -04001887 valid_keys = set(_HOOK_FLAGS.keys())
Mike Frysingerf8ce1712015-03-25 18:32:33 -04001888 hooks = _HOOK_FLAGS.copy()
Mike Frysinger3554bc92015-03-11 04:59:21 -04001889
1890 enable_flags = []
Ryan Cui9b651632011-05-11 11:38:58 -07001891 disable_flags = []
Jon Salz3ee59de2012-08-18 13:54:22 +08001892 for flag in config.options(SECTION):
Mike Frysinger3554bc92015-03-11 04:59:21 -04001893 if flag not in valid_keys:
1894 raise ValueError('Error: unknown key "%s" in hook section of "%s"' %
1895 (flag, _CONFIG_FILE))
1896
Ryan Cui9b651632011-05-11 11:38:58 -07001897 try:
Mike Frysingerf8ce1712015-03-25 18:32:33 -04001898 enabled = config.getboolean(SECTION, flag)
Ryan Cui9b651632011-05-11 11:38:58 -07001899 except ValueError as e:
Mike Frysinger3554bc92015-03-11 04:59:21 -04001900 raise ValueError('Error: parsing flag "%s" in "%s" failed: %s' %
1901 (flag, _CONFIG_FILE, e))
Mike Frysingerf8ce1712015-03-25 18:32:33 -04001902 if enabled:
1903 enable_flags.append(flag)
1904 else:
1905 disable_flags.append(flag)
Ryan Cui9b651632011-05-11 11:38:58 -07001906
Mike Frysingerf8ce1712015-03-25 18:32:33 -04001907 # See if this hook has custom options.
1908 if enabled:
1909 try:
1910 options = config.get(SECTION_OPTIONS, flag)
1911 hooks[flag] = functools.partial(hooks[flag], options=options.split())
Mike Frysingerb7d552e2017-11-23 11:50:47 -05001912 hooks[flag].__name__ = flag
Mike Frysinger7bfc89f2019-09-13 15:45:51 -04001913 except (configparser.NoOptionError, configparser.NoSectionError):
Mike Frysingerf8ce1712015-03-25 18:32:33 -04001914 pass
1915
1916 enabled_hooks = set(hooks[x] for x in enable_flags)
1917 disabled_hooks = set(hooks[x] for x in disable_flags)
Mike Frysinger45334bd2019-11-04 10:42:33 -05001918
Mike Frysinger9ab64b12019-11-04 10:53:08 -05001919 if _check_change_has_signoff_field not in enabled_hooks:
1920 enabled_hooks.add(_check_change_has_no_signoff_field)
Mike Frysinger45334bd2019-11-04 10:42:33 -05001921 if _check_change_has_branch_field not in enabled_hooks:
1922 enabled_hooks.add(_check_change_has_no_branch_field)
1923
Mike Frysinger3554bc92015-03-11 04:59:21 -04001924 return enabled_hooks, disabled_hooks
Ryan Cui9b651632011-05-11 11:38:58 -07001925
1926
Jon Salz3ee59de2012-08-18 13:54:22 +08001927def _get_project_hook_scripts(config):
1928 """Returns a list of project-specific hook scripts.
1929
1930 Args:
1931 config: A ConfigParser for the project's config file.
1932 """
1933 SECTION = 'Hook Scripts'
1934 if not config.has_section(SECTION):
1935 return []
1936
Mike Frysingerb7d552e2017-11-23 11:50:47 -05001937 return config.items(SECTION)
Jon Salz3ee59de2012-08-18 13:54:22 +08001938
1939
Vadim Bendebury2b62d742014-06-22 13:14:51 -07001940def _get_project_hooks(project, presubmit):
Ryan Cui9b651632011-05-11 11:38:58 -07001941 """Returns a list of hooks that need to be run for a project.
1942
1943 Expects to be called from within the project root.
Vadim Bendebury2b62d742014-06-22 13:14:51 -07001944
1945 Args:
1946 project: A string, name of the project.
1947 presubmit: A Boolean, True if the check is run as a git pre-submit script.
Ryan Cui9b651632011-05-11 11:38:58 -07001948 """
Mike Frysinger7bfc89f2019-09-13 15:45:51 -04001949 config = configparser.RawConfigParser()
Shuhei Takahashi3cbb8dd2019-10-29 12:37:11 +09001950 if not os.path.exists(_CONFIG_FILE):
Jon Salz3ee59de2012-08-18 13:54:22 +08001951 # Just use an empty config file
Mike Frysinger7bfc89f2019-09-13 15:45:51 -04001952 config = configparser.RawConfigParser()
Shuhei Takahashi3cbb8dd2019-10-29 12:37:11 +09001953 else:
1954 config.read(_CONFIG_FILE)
Jon Salz3ee59de2012-08-18 13:54:22 +08001955
Vadim Bendebury2b62d742014-06-22 13:14:51 -07001956 if presubmit:
Filipe Brandenburgerf70d32c2015-10-09 13:35:45 -07001957 hooks = _COMMON_HOOKS
Vadim Bendebury2b62d742014-06-22 13:14:51 -07001958 else:
Filipe Brandenburgerf70d32c2015-10-09 13:35:45 -07001959 hooks = _PATCH_DESCRIPTION_HOOKS + _COMMON_HOOKS
Vadim Bendebury2b62d742014-06-22 13:14:51 -07001960
Mike Frysinger3554bc92015-03-11 04:59:21 -04001961 enabled_hooks, disabled_hooks = _get_override_hooks(config)
Filipe Brandenburgerf70d32c2015-10-09 13:35:45 -07001962 hooks = [hook for hook in hooks if hook not in disabled_hooks]
1963
1964 # If a list is both in _COMMON_HOOKS and also enabled explicitly through an
1965 # override, keep the override only. Note that the override may end up being
1966 # a functools.partial, in which case we need to extract the .func to compare
1967 # it to the common hooks.
1968 unwrapped_hooks = [getattr(hook, 'func', hook) for hook in enabled_hooks]
1969 hooks = [hook for hook in hooks if hook not in unwrapped_hooks]
1970
1971 hooks = list(enabled_hooks) + hooks
Ryan Cui9b651632011-05-11 11:38:58 -07001972
1973 if project in _PROJECT_SPECIFIC_HOOKS:
Puneet Kumarc80e3f62012-08-13 19:01:18 -07001974 hooks.extend(hook for hook in _PROJECT_SPECIFIC_HOOKS[project]
1975 if hook not in disabled_hooks)
Ryan Cui9b651632011-05-11 11:38:58 -07001976
Mike Frysingerb7d552e2017-11-23 11:50:47 -05001977 for name, script in _get_project_hook_scripts(config):
1978 func = functools.partial(_run_project_hook_script, script)
1979 func.__name__ = name
1980 hooks.append(func)
Jon Salz3ee59de2012-08-18 13:54:22 +08001981
Ryan Cui9b651632011-05-11 11:38:58 -07001982 return hooks
1983
1984
Alex Deymo643ac4c2015-09-03 10:40:50 -07001985def _run_project_hooks(project_name, proj_dir=None,
Vadim Bendebury2b62d742014-06-22 13:14:51 -07001986 commit_list=None, presubmit=False):
Ryan Cui1562fb82011-05-09 11:01:31 -07001987 """For each project run its project specific hook from the hooks dictionary.
1988
1989 Args:
Alex Deymo643ac4c2015-09-03 10:40:50 -07001990 project_name: The name of project to run hooks for.
Doug Anderson44a644f2011-11-02 10:37:37 -07001991 proj_dir: If non-None, this is the directory the project is in. If None,
1992 we'll ask repo.
Doug Anderson14749562013-06-26 13:38:29 -07001993 commit_list: A list of commits to run hooks against. If None or empty list
1994 then we'll automatically get the list of commits that would be uploaded.
Vadim Bendebury2b62d742014-06-22 13:14:51 -07001995 presubmit: A Boolean, True if the check is run as a git pre-submit script.
Ryan Cui1562fb82011-05-09 11:01:31 -07001996
1997 Returns:
1998 Boolean value of whether any errors were ecountered while running the hooks.
1999 """
Doug Anderson44a644f2011-11-02 10:37:37 -07002000 if proj_dir is None:
Alex Deymo643ac4c2015-09-03 10:40:50 -07002001 proj_dirs = _run_command(
2002 ['repo', 'forall', project_name, '-c', 'pwd']).split()
Mike Frysingere52b1bc2019-09-16 23:45:41 -04002003 if not proj_dirs:
Alex Deymo643ac4c2015-09-03 10:40:50 -07002004 print('%s cannot be found.' % project_name, file=sys.stderr)
David James2edd9002013-10-11 14:09:19 -07002005 print('Please specify a valid project.', file=sys.stderr)
2006 return True
2007 if len(proj_dirs) > 1:
Alex Deymo643ac4c2015-09-03 10:40:50 -07002008 print('%s is associated with multiple directories.' % project_name,
David James2edd9002013-10-11 14:09:19 -07002009 file=sys.stderr)
2010 print('Please specify a directory to help disambiguate.', file=sys.stderr)
2011 return True
2012 proj_dir = proj_dirs[0]
Doug Anderson44a644f2011-11-02 10:37:37 -07002013
Ryan Cuiec4d6332011-05-02 14:15:25 -07002014 pwd = os.getcwd()
2015 # hooks assume they are run from the root of the project
2016 os.chdir(proj_dir)
2017
Alex Deymo643ac4c2015-09-03 10:40:50 -07002018 remote_branch = _run_command(['git', 'rev-parse', '--abbrev-ref',
2019 '--symbolic-full-name', '@{u}']).strip()
2020 if not remote_branch:
Mike Frysinger24dd3c52019-08-17 14:22:48 -04002021 print("Your project %s doesn't track any remote repo." % project_name,
Alex Deymo643ac4c2015-09-03 10:40:50 -07002022 file=sys.stderr)
2023 remote = None
2024 else:
Josh Pratt15d13ab2018-08-13 11:52:48 +10002025 branch_items = remote_branch.split('/', 1)
2026 if len(branch_items) != 2:
2027 PrintErrorForProject(
2028 project_name,
2029 HookFailure(
2030 'Cannot get remote and branch name (%s)' % remote_branch))
2031 os.chdir(pwd)
2032 return True
2033 remote, _branch = branch_items
Alex Deymo643ac4c2015-09-03 10:40:50 -07002034
2035 project = Project(name=project_name, dir=proj_dir, remote=remote)
2036
Doug Anderson14749562013-06-26 13:38:29 -07002037 if not commit_list:
2038 try:
2039 commit_list = _get_commits()
2040 except VerifyException as e:
Alex Deymo643ac4c2015-09-03 10:40:50 -07002041 PrintErrorForProject(project.name, HookFailure(str(e)))
Doug Anderson14749562013-06-26 13:38:29 -07002042 os.chdir(pwd)
2043 return True
Ryan Cuifa55df52011-05-06 11:16:55 -07002044
Alex Deymo643ac4c2015-09-03 10:40:50 -07002045 hooks = _get_project_hooks(project.name, presubmit)
Ryan Cui1562fb82011-05-09 11:01:31 -07002046 error_found = False
Mike Frysingerb7d552e2017-11-23 11:50:47 -05002047 commit_count = len(commit_list)
Mike Frysingerb99b3772019-08-17 14:19:44 -04002048 hook_count = len(hooks)
Mike Frysingerb7d552e2017-11-23 11:50:47 -05002049 for i, commit in enumerate(commit_list):
Mike Frysingerb2496652019-09-12 23:35:46 -04002050 CACHE.clear()
2051
Ryan Cui1562fb82011-05-09 11:01:31 -07002052 error_list = []
Mike Frysingerb99b3772019-08-17 14:19:44 -04002053 for h, hook in enumerate(hooks):
2054 output = ('PRESUBMIT.cfg: [%i/%i]: %s: Running [%i/%i] %s' %
Ben Chaneb806d82019-09-16 11:52:52 -07002055 (i + 1, commit_count, commit, h + 1, hook_count, hook.__name__))
Mike Frysingerb7d552e2017-11-23 11:50:47 -05002056 print(output, end='\r')
2057 sys.stdout.flush()
Ryan Cui1562fb82011-05-09 11:01:31 -07002058 hook_error = hook(project, commit)
Mike Frysingerb7d552e2017-11-23 11:50:47 -05002059 print(' ' * len(output), end='\r')
2060 sys.stdout.flush()
Ryan Cui1562fb82011-05-09 11:01:31 -07002061 if hook_error:
Keigo Oka7e880ac2019-07-03 15:03:43 +09002062 if isinstance(hook_error, list):
2063 error_list.extend(hook_error)
2064 else:
2065 error_list.append(hook_error)
Ryan Cui1562fb82011-05-09 11:01:31 -07002066 error_found = True
2067 if error_list:
Alex Deymo643ac4c2015-09-03 10:40:50 -07002068 PrintErrorsForCommit(project.name, commit, _get_commit_desc(commit),
Ryan Cui1562fb82011-05-09 11:01:31 -07002069 error_list)
Don Garrettdba548a2011-05-05 15:17:14 -07002070
Ryan Cuiec4d6332011-05-02 14:15:25 -07002071 os.chdir(pwd)
Ryan Cui1562fb82011-05-09 11:01:31 -07002072 return error_found
Mandeep Singh Baines116ad102011-04-27 15:16:37 -07002073
Mike Frysingerae409522014-02-01 03:16:11 -05002074
Mandeep Singh Baines116ad102011-04-27 15:16:37 -07002075# Main
Mandeep Singh Baines69e470e2011-04-06 10:34:52 -07002076
Ryan Cui1562fb82011-05-09 11:01:31 -07002077
Mike Frysingerae409522014-02-01 03:16:11 -05002078def main(project_list, worktree_list=None, **_kwargs):
Doug Anderson06456632012-01-05 11:02:14 -08002079 """Main function invoked directly by repo.
2080
2081 This function will exit directly upon error so that repo doesn't print some
2082 obscure error message.
2083
2084 Args:
2085 project_list: List of projects to run on.
David James2edd9002013-10-11 14:09:19 -07002086 worktree_list: A list of directories. It should be the same length as
2087 project_list, so that each entry in project_list matches with a directory
2088 in worktree_list. If None, we will attempt to calculate the directories
2089 automatically.
Doug Anderson06456632012-01-05 11:02:14 -08002090 kwargs: Leave this here for forward-compatibility.
2091 """
Ryan Cui1562fb82011-05-09 11:01:31 -07002092 found_error = False
David James2edd9002013-10-11 14:09:19 -07002093 if not worktree_list:
2094 worktree_list = [None] * len(project_list)
2095 for project, worktree in zip(project_list, worktree_list):
2096 if _run_project_hooks(project, proj_dir=worktree):
Ryan Cui1562fb82011-05-09 11:01:31 -07002097 found_error = True
2098
Mike Frysingerae409522014-02-01 03:16:11 -05002099 if found_error:
Ryan Cui1562fb82011-05-09 11:01:31 -07002100 msg = ('Preupload failed due to errors in project(s). HINTS:\n'
Ryan Cui9b651632011-05-11 11:38:58 -07002101 '- To disable some source style checks, and for other hints, see '
2102 '<checkout_dir>/src/repohooks/README\n'
Mike Frysinger24dd3c52019-08-17 14:22:48 -04002103 "- To upload only current project, run 'repo upload .'")
Mike Frysinger09d6a3d2013-10-08 22:21:03 -04002104 print(msg, file=sys.stderr)
Don Garrettdba548a2011-05-05 15:17:14 -07002105 sys.exit(1)
Anush Elangovan63afad72011-03-23 00:41:27 -07002106
Ryan Cui1562fb82011-05-09 11:01:31 -07002107
Doug Anderson44a644f2011-11-02 10:37:37 -07002108def _identify_project(path):
2109 """Identify the repo project associated with the given path.
2110
2111 Returns:
2112 A string indicating what project is associated with the path passed in or
2113 a blank string upon failure.
2114 """
2115 return _run_command(['repo', 'forall', '.', '-c', 'echo ${REPO_PROJECT}'],
Mike Frysinger7bb709f2019-09-29 23:20:12 -04002116 stderr=True, cwd=path).strip()
Doug Anderson44a644f2011-11-02 10:37:37 -07002117
2118
Mike Frysinger55f85b52014-12-18 14:45:21 -05002119def direct_main(argv):
Doug Anderson44a644f2011-11-02 10:37:37 -07002120 """Run hooks directly (outside of the context of repo).
2121
Doug Anderson44a644f2011-11-02 10:37:37 -07002122 Args:
Mike Frysinger55f85b52014-12-18 14:45:21 -05002123 argv: The command line args to process
Doug Anderson44a644f2011-11-02 10:37:37 -07002124
2125 Returns:
2126 0 if no pre-upload failures, 1 if failures.
2127
2128 Raises:
2129 BadInvocation: On some types of invocation errors.
2130 """
Mike Frysinger66142932014-12-18 14:55:57 -05002131 parser = commandline.ArgumentParser(description=__doc__)
2132 parser.add_argument('--dir', default=None,
2133 help='The directory that the project lives in. If not '
2134 'specified, use the git project root based on the cwd.')
2135 parser.add_argument('--project', default=None,
2136 help='The project repo path; this can affect how the '
2137 'hooks get run, since some hooks are project-specific. '
2138 'For chromite this is chromiumos/chromite. If not '
2139 'specified, the repo tool will be used to figure this '
2140 'out based on the dir.')
2141 parser.add_argument('--rerun-since', default=None,
Vadim Bendebury75447b92018-01-10 12:06:01 -08002142 help='Rerun hooks on old commits since some point '
2143 'in the past. The argument could be a date (should '
Mike Frysinger24dd3c52019-08-17 14:22:48 -04002144 "match git log's concept of a date, e.g. 2012-06-20), "
Vadim Bendebury75447b92018-01-10 12:06:01 -08002145 'or a SHA1, or just a number of commits to check (from 1 '
2146 'to 99). This option is mutually exclusive with '
2147 '--pre-submit.')
Mike Frysinger24dd3c52019-08-17 14:22:48 -04002148 parser.add_argument('--pre-submit', action='store_true',
Mike Frysinger66142932014-12-18 14:55:57 -05002149 help='Run the check against the pending commit. '
Mike Frysinger24dd3c52019-08-17 14:22:48 -04002150 "This option should be used at the 'git commit' "
2151 "phase as opposed to 'repo upload'. This option "
Mike Frysinger66142932014-12-18 14:55:57 -05002152 'is mutually exclusive with --rerun-since.')
2153 parser.add_argument('commits', nargs='*',
2154 help='Check specific commits')
2155 opts = parser.parse_args(argv)
Doug Anderson44a644f2011-11-02 10:37:37 -07002156
Doug Anderson14749562013-06-26 13:38:29 -07002157 if opts.rerun_since:
Mike Frysinger66142932014-12-18 14:55:57 -05002158 if opts.commits:
Mike Frysinger24dd3c52019-08-17 14:22:48 -04002159 raise BadInvocation("Can't pass commits and use rerun-since: %s" %
Mike Frysinger66142932014-12-18 14:55:57 -05002160 ' '.join(opts.commits))
Doug Anderson14749562013-06-26 13:38:29 -07002161
Vadim Bendebury75447b92018-01-10 12:06:01 -08002162 if len(opts.rerun_since) < 3 and opts.rerun_since.isdigit():
2163 # This must be the number of commits to check. We don't expect the user
2164 # to want to check more than 99 commits.
2165 limit = '-n%s' % opts.rerun_since
2166 elif git.IsSHA1(opts.rerun_since, False):
2167 limit = '%s..' % opts.rerun_since
2168 else:
2169 # This better be a date.
2170 limit = '--since=%s' % opts.rerun_since
2171 cmd = ['git', 'log', limit, '--pretty=%H']
Doug Anderson14749562013-06-26 13:38:29 -07002172 all_commits = _run_command(cmd).splitlines()
2173 bot_commits = _run_command(cmd + ['--author=chrome-bot']).splitlines()
2174
2175 # Eliminate chrome-bot commits but keep ordering the same...
2176 bot_commits = set(bot_commits)
Mike Frysinger66142932014-12-18 14:55:57 -05002177 opts.commits = [c for c in all_commits if c not in bot_commits]
Doug Anderson14749562013-06-26 13:38:29 -07002178
Vadim Bendebury2b62d742014-06-22 13:14:51 -07002179 if opts.pre_submit:
2180 raise BadInvocation('rerun-since and pre-submit can not be '
2181 'used together')
2182 if opts.pre_submit:
Mike Frysinger66142932014-12-18 14:55:57 -05002183 if opts.commits:
Mike Frysinger24dd3c52019-08-17 14:22:48 -04002184 raise BadInvocation("Can't pass commits and use pre-submit: %s" %
Mike Frysinger66142932014-12-18 14:55:57 -05002185 ' '.join(opts.commits))
2186 opts.commits = [PRE_SUBMIT,]
Doug Anderson44a644f2011-11-02 10:37:37 -07002187
2188 # Check/normlaize git dir; if unspecified, we'll use the root of the git
2189 # project from CWD
2190 if opts.dir is None:
2191 git_dir = _run_command(['git', 'rev-parse', '--git-dir'],
Mike Frysinger7bb709f2019-09-29 23:20:12 -04002192 stderr=True).strip()
Doug Anderson44a644f2011-11-02 10:37:37 -07002193 if not git_dir:
2194 raise BadInvocation('The current directory is not part of a git project.')
2195 opts.dir = os.path.dirname(os.path.abspath(git_dir))
2196 elif not os.path.isdir(opts.dir):
2197 raise BadInvocation('Invalid dir: %s' % opts.dir)
2198 elif not os.path.isdir(os.path.join(opts.dir, '.git')):
2199 raise BadInvocation('Not a git directory: %s' % opts.dir)
2200
2201 # Identify the project if it wasn't specified; this _requires_ the repo
2202 # tool to be installed and for the project to be part of a repo checkout.
2203 if not opts.project:
2204 opts.project = _identify_project(opts.dir)
2205 if not opts.project:
2206 raise BadInvocation("Repo couldn't identify the project of %s" % opts.dir)
2207
Doug Anderson14749562013-06-26 13:38:29 -07002208 found_error = _run_project_hooks(opts.project, proj_dir=opts.dir,
Mike Frysinger66142932014-12-18 14:55:57 -05002209 commit_list=opts.commits,
Vadim Bendebury2b62d742014-06-22 13:14:51 -07002210 presubmit=opts.pre_submit)
Doug Anderson44a644f2011-11-02 10:37:37 -07002211 if found_error:
2212 return 1
2213 return 0
2214
2215
Mandeep Singh Baines69e470e2011-04-06 10:34:52 -07002216if __name__ == '__main__':
Mike Frysinger55f85b52014-12-18 14:45:21 -05002217 sys.exit(direct_main(sys.argv[1:]))