blob: 3e020efd7361d37ad00661d1a0530edef128f21c [file] [log] [blame]
Mike Frysingerf1ba7ad2022-09-12 05:42:57 -04001# Copyright 2019 The ChromiumOS Authors
Alex Kleineb77ffa2019-05-28 14:47:44 -06002# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5"""Package utility functionality."""
6
Yaakov Shaul730814a2019-09-10 13:58:25 -06007import collections
Trent Apted593c0742023-05-05 03:50:20 +00008
9# TODO(b/236161656): Fix.
10# pylint: disable-next=no-name-in-module,import-error
Ben Reiche779cf42020-12-15 03:21:31 +000011from distutils.version import LooseVersion
Yaakov Shaulcb1cfc32019-09-16 13:51:19 -060012import fileinput
Alex Klein87531182019-08-12 15:23:37 -060013import functools
Yaakov Shaul395ae832019-09-09 14:45:32 -060014import json
Chris McDonaldf7c03d42021-07-21 11:54:26 -060015import logging
Evan Hernandezb51f1522019-08-15 11:29:40 -060016import os
Michael Mortensenb70e8a82019-10-10 18:43:41 -060017import re
Yaakov Shaulcb1cfc32019-09-16 13:51:19 -060018import sys
Alex Klein68a28712021-11-08 11:08:30 -070019from typing import Iterable, List, NamedTuple, Optional, TYPE_CHECKING, Union
Alex Klein87531182019-08-12 15:23:37 -060020
Mike Frysinger2c024062021-05-22 15:43:22 -040021from chromite.third_party.google.protobuf import json_format
Yaakov Shaul730814a2019-09-10 13:58:25 -060022
Andrew Lamb2bde9e42019-11-04 13:24:09 -070023from chromite.api.gen.config import replication_config_pb2
Ram Chandrasekar60f69f32022-06-03 22:49:30 +000024from chromite.lib import chromeos_version
Alex Kleineb77ffa2019-05-28 14:47:44 -060025from chromite.lib import constants
Evan Hernandezb51f1522019-08-15 11:29:40 -060026from chromite.lib import cros_build_lib
Alex Kleineb77ffa2019-05-28 14:47:44 -060027from chromite.lib import git
Michael Mortensende716a12020-05-15 11:27:00 -060028from chromite.lib import image_lib
Michael Mortensenb70e8a82019-10-10 18:43:41 -060029from chromite.lib import osutils
Alex Kleineb77ffa2019-05-28 14:47:44 -060030from chromite.lib import portage_util
Andrew Lamb2bde9e42019-11-04 13:24:09 -070031from chromite.lib import replication_lib
Alex Kleind6195b62019-08-06 16:01:16 -060032from chromite.lib import uprev_lib
Alex Klein18a60af2020-06-11 12:08:47 -060033from chromite.lib.parser import package_info
Shao-Chuan Lee05e51142021-11-24 12:27:37 +090034from chromite.service import android
Alex Kleineb77ffa2019-05-28 14:47:44 -060035
Mike Frysinger68796b52019-08-25 00:04:27 -040036
Alex Klein5caab872021-09-10 11:44:37 -060037if TYPE_CHECKING:
Alex Klein1699fab2022-09-08 08:46:06 -060038 from chromite.lib import build_target_lib
39 from chromite.lib import chroot_lib
Chris McDonaldf7c03d42021-07-21 11:54:26 -060040
Alex Klein36b117f2019-09-30 15:13:46 -060041if cros_build_lib.IsInsideChroot():
Alex Klein1699fab2022-09-08 08:46:06 -060042 from chromite.lib import depgraph
43 from chromite.service import dependency
Alex Klein36b117f2019-09-30 15:13:46 -060044
Alex Klein87531182019-08-12 15:23:37 -060045# Registered handlers for uprevving versioned packages.
46_UPREV_FUNCS = {}
47
Alex Kleineb77ffa2019-05-28 14:47:44 -060048
49class Error(Exception):
Alex Klein1699fab2022-09-08 08:46:06 -060050 """Module's base error class."""
Alex Kleineb77ffa2019-05-28 14:47:44 -060051
52
Alex Klein4de25e82019-08-05 15:58:39 -060053class UnknownPackageError(Error):
Alex Klein1699fab2022-09-08 08:46:06 -060054 """Uprev attempted for a package without a registered handler."""
Alex Klein4de25e82019-08-05 15:58:39 -060055
56
Alex Kleineb77ffa2019-05-28 14:47:44 -060057class UprevError(Error):
Alex Klein1699fab2022-09-08 08:46:06 -060058 """An error occurred while uprevving packages."""
Alex Kleineb77ffa2019-05-28 14:47:44 -060059
60
Michael Mortensenb70e8a82019-10-10 18:43:41 -060061class NoAndroidVersionError(Error):
Alex Klein1699fab2022-09-08 08:46:06 -060062 """An error occurred while trying to determine the android version."""
Michael Mortensenb70e8a82019-10-10 18:43:41 -060063
64
65class NoAndroidBranchError(Error):
Alex Klein1699fab2022-09-08 08:46:06 -060066 """An error occurred while trying to determine the android branch."""
Michael Mortensenb70e8a82019-10-10 18:43:41 -060067
68
69class NoAndroidTargetError(Error):
Alex Klein1699fab2022-09-08 08:46:06 -060070 """An error occurred while trying to determine the android target."""
Michael Mortensenb70e8a82019-10-10 18:43:41 -060071
72
Lizzy Presland0b978e62022-09-09 16:55:29 +000073class KernelVersionError(Error):
74 """An error occurred while trying to determine the kernel version."""
75
76
Alex Klein4de25e82019-08-05 15:58:39 -060077class AndroidIsPinnedUprevError(UprevError):
Alex Klein1699fab2022-09-08 08:46:06 -060078 """Raised when we try to uprev while Android is pinned."""
Alex Klein4de25e82019-08-05 15:58:39 -060079
Alex Klein1699fab2022-09-08 08:46:06 -060080 def __init__(self, new_android_atom):
81 """Initialize a AndroidIsPinnedUprevError.
Alex Klein4de25e82019-08-05 15:58:39 -060082
Alex Klein1699fab2022-09-08 08:46:06 -060083 Args:
Alex Klein348e7692022-10-13 17:03:37 -060084 new_android_atom: The Android atom that we failed to uprev to, due
85 to Android being pinned.
Alex Klein1699fab2022-09-08 08:46:06 -060086 """
87 assert new_android_atom
88 msg = (
89 "Failed up uprev to Android version %s as Android was pinned."
90 % new_android_atom
91 )
92 super().__init__(msg)
93 self.new_android_atom = new_android_atom
Alex Klein87531182019-08-12 15:23:37 -060094
95
Andrew Lamb9563a152019-12-04 11:42:18 -070096class GeneratedCrosConfigFilesError(Error):
Alex Klein1699fab2022-09-08 08:46:06 -060097 """Error when cros_config_schema does not produce expected files"""
Andrew Lamb9563a152019-12-04 11:42:18 -070098
Alex Klein1699fab2022-09-08 08:46:06 -060099 def __init__(self, expected_files, found_files):
100 msg = "Expected to find generated C files: %s. Actually found: %s" % (
101 expected_files,
102 found_files,
103 )
104 super().__init__(msg)
Andrew Lamb9563a152019-12-04 11:42:18 -0700105
Alex Klein7a3a7dd2020-01-08 16:44:38 -0700106
Alex Klein1699fab2022-09-08 08:46:06 -0600107NeedsChromeSourceResult = collections.namedtuple(
108 "NeedsChromeSourceResult",
109 (
110 "needs_chrome_source",
111 "builds_chrome",
112 "packages",
113 "missing_chrome_prebuilt",
114 "missing_follower_prebuilt",
115 "local_uprev",
116 ),
117)
Alex Klein6becabc2020-09-11 14:03:05 -0600118
119
Yaakov Shaulcb1cfc32019-09-16 13:51:19 -0600120def patch_ebuild_vars(ebuild_path, variables):
Alex Klein1699fab2022-09-08 08:46:06 -0600121 """Updates variables in ebuild.
Yaakov Shaulcb1cfc32019-09-16 13:51:19 -0600122
Alex Klein1699fab2022-09-08 08:46:06 -0600123 Use this function rather than portage_util.EBuild.UpdateEBuild when you
124 want to preserve the variable position and quotes within the ebuild.
Yaakov Shaulcb1cfc32019-09-16 13:51:19 -0600125
Alex Klein1699fab2022-09-08 08:46:06 -0600126 Args:
Alex Klein348e7692022-10-13 17:03:37 -0600127 ebuild_path: The path of the ebuild.
128 variables: Dictionary of variables to update in ebuild.
Alex Klein1699fab2022-09-08 08:46:06 -0600129 """
130 try:
131 for line in fileinput.input(ebuild_path, inplace=1):
132 for var, value in variables.items():
133 line = re.sub(rf"\b{var}=\S+", f'{var}="{value}"', line)
134 sys.stdout.write(line)
135 finally:
136 fileinput.close()
Yaakov Shaulcb1cfc32019-09-16 13:51:19 -0600137
138
Alex Klein87531182019-08-12 15:23:37 -0600139def uprevs_versioned_package(package):
Alex Klein1699fab2022-09-08 08:46:06 -0600140 """Decorator to register package uprev handlers."""
141 assert package
Alex Klein87531182019-08-12 15:23:37 -0600142
Alex Klein1699fab2022-09-08 08:46:06 -0600143 def register(func):
144 """Registers |func| as a handler for |package|."""
145 _UPREV_FUNCS[package] = func
Alex Klein87531182019-08-12 15:23:37 -0600146
Alex Klein1699fab2022-09-08 08:46:06 -0600147 @functools.wraps(func)
148 def pass_through(*args, **kwargs):
149 return func(*args, **kwargs)
Alex Klein87531182019-08-12 15:23:37 -0600150
Alex Klein1699fab2022-09-08 08:46:06 -0600151 return pass_through
Alex Klein87531182019-08-12 15:23:37 -0600152
Alex Klein1699fab2022-09-08 08:46:06 -0600153 return register
Alex Klein87531182019-08-12 15:23:37 -0600154
155
Shao-Chuan Lee84bf9a22021-11-19 17:42:11 +0900156class UprevAndroidResult(NamedTuple):
Alex Klein1699fab2022-09-08 08:46:06 -0600157 """Results of an Android uprev."""
158
159 revved: bool
160 android_atom: str = None
161 modified_files: List[str] = None
Shao-Chuan Lee84bf9a22021-11-19 17:42:11 +0900162
163
164def uprev_android(
165 android_package: str,
Alex Klein1699fab2022-09-08 08:46:06 -0600166 chroot: "chroot_lib.Chroot",
167 build_targets: Optional[List["build_target_lib.BuildTarget"]] = None,
Shao-Chuan Lee84bf9a22021-11-19 17:42:11 +0900168 android_build_branch: Optional[str] = None,
169 android_version: Optional[str] = None,
Alex Klein1699fab2022-09-08 08:46:06 -0600170 skip_commit: bool = False,
171) -> UprevAndroidResult:
172 """Performs an Android uprev by calling cros_mark_android_as_stable.
Shao-Chuan Lee84bf9a22021-11-19 17:42:11 +0900173
Alex Klein1699fab2022-09-08 08:46:06 -0600174 Args:
Alex Klein348e7692022-10-13 17:03:37 -0600175 android_package: The Android package to uprev.
176 chroot: The chroot to enter.
177 build_targets: List of build targets to cleanup after uprev.
178 android_build_branch: Override the default Android branch corresponding
179 to the package.
180 android_version: Uprev to the particular version. By default the latest
181 available version is used.
182 skip_commit: Whether to skip committing the change after a successful
183 uprev.
Shao-Chuan Lee84bf9a22021-11-19 17:42:11 +0900184
Alex Klein1699fab2022-09-08 08:46:06 -0600185 Returns:
Alex Klein348e7692022-10-13 17:03:37 -0600186 The uprev result containing:
187 revved: Whether an uprev happened.
188 android_atom: If revved, the portage atom for the revved Android
189 ebuild.
190 modified_files: If revved, list of files being modified.
Alex Klein1699fab2022-09-08 08:46:06 -0600191 """
192 command = [
193 "cros_mark_android_as_stable",
194 f"--android_package={android_package}",
195 ]
196 if build_targets:
197 command.append(f'--boards={":".join(bt.name for bt in build_targets)}')
198 if android_build_branch:
199 command.append(f"--android_build_branch={android_build_branch}")
200 if android_version:
201 command.append(f"--force_version={android_version}")
202 if skip_commit:
203 command.append("--skip_commit")
Alex Klein4de25e82019-08-05 15:58:39 -0600204
Alex Klein1699fab2022-09-08 08:46:06 -0600205 result = cros_build_lib.run(
206 command,
207 stdout=True,
208 enter_chroot=True,
209 encoding="utf-8",
210 chroot_args=chroot.get_enter_args(),
211 )
Alex Klein4de25e82019-08-05 15:58:39 -0600212
Alex Klein1699fab2022-09-08 08:46:06 -0600213 # cros_mark_android_as_stable prints the uprev result to stdout as JSON in a
214 # single line. We only take the last line from stdout to make sure no junk
Alex Kleinfee86da2023-01-20 18:40:06 -0700215 # output is included (e.g. messages from bashrc scripts that run upon
216 # entering the chroot.)
Alex Klein1699fab2022-09-08 08:46:06 -0600217 output = json.loads(result.stdout.strip().splitlines()[-1])
Shao-Chuan Leedea458f2021-11-25 23:46:53 +0900218
Alex Klein1699fab2022-09-08 08:46:06 -0600219 if not output["revved"]:
220 logging.info("Found nothing to rev.")
221 return UprevAndroidResult(revved=False)
Shao-Chuan Lee84bf9a22021-11-19 17:42:11 +0900222
Alex Klein1699fab2022-09-08 08:46:06 -0600223 android_atom = output["android_atom"]
Alex Klein4de25e82019-08-05 15:58:39 -0600224
Alex Klein1699fab2022-09-08 08:46:06 -0600225 for target in build_targets or []:
226 # Sanity check: We should always be able to merge the version of
227 # Android we just unmasked.
228 command = [f"emerge-{target.name}", "-p", "--quiet", f"={android_atom}"]
229 try:
230 cros_build_lib.run(
231 command, enter_chroot=True, chroot_args=chroot.get_enter_args()
232 )
233 except cros_build_lib.RunCommandError:
234 logging.error(
Trent Aptedb18e36f2023-05-10 15:06:38 +1000235 "Cannot emerge-%s =%s\nIs Android pinned to an older version?",
Alex Klein1699fab2022-09-08 08:46:06 -0600236 target,
237 android_atom,
238 )
239 raise AndroidIsPinnedUprevError(android_atom)
Alex Klein4de25e82019-08-05 15:58:39 -0600240
Alex Klein1699fab2022-09-08 08:46:06 -0600241 return UprevAndroidResult(
242 revved=True,
243 android_atom=android_atom,
244 modified_files=output["modified_files"],
245 )
Shao-Chuan Lee05e51142021-11-24 12:27:37 +0900246
247
Alex Klein1699fab2022-09-08 08:46:06 -0600248def uprev_android_lkgb(
249 android_package: str,
250 build_targets: List["build_target_lib.BuildTarget"],
251 chroot: "chroot_lib.Chroot",
252) -> uprev_lib.UprevVersionedPackageResult:
253 """Uprevs an Android package to the version specified in the LKGB file.
Shao-Chuan Lee05e51142021-11-24 12:27:37 +0900254
Alex Klein1699fab2022-09-08 08:46:06 -0600255 This is the PUpr handler for Android packages, triggered whenever the
256 corresponding LKGB file is being updated.
Shao-Chuan Lee05e51142021-11-24 12:27:37 +0900257
Alex Kleinfee86da2023-01-20 18:40:06 -0700258 PUpr for Android does not test the uprev change in CQ; instead we run
259 separate jobs to test new Android versions, and we write the latest vetted
260 version to the LKGB file. Find the design at go/android-uprev-recipes.
Shao-Chuan Lee05e51142021-11-24 12:27:37 +0900261
Alex Klein1699fab2022-09-08 08:46:06 -0600262 Args:
Alex Klein348e7692022-10-13 17:03:37 -0600263 android_package: The Android package to uprev.
264 build_targets: List of build targets to cleanup after uprev.
265 chroot: The chroot to enter.
Shao-Chuan Lee05e51142021-11-24 12:27:37 +0900266
Alex Klein1699fab2022-09-08 08:46:06 -0600267 Returns:
Alex Klein348e7692022-10-13 17:03:37 -0600268 An uprev_lib.UprevVersionedPackageResult containing the new version and
269 a list of modified files.
Alex Klein1699fab2022-09-08 08:46:06 -0600270 """
271 android_package_dir = android.GetAndroidPackageDir(android_package)
Shao-Chuan Lee293389c2023-01-20 17:44:35 +0900272 lkgb = android.ReadLKGB(android_package_dir)
273 android_version = lkgb["build_id"]
274 android_branch = lkgb.get("branch", None)
Shao-Chuan Lee05e51142021-11-24 12:27:37 +0900275
Alex Klein1699fab2022-09-08 08:46:06 -0600276 result = uprev_lib.UprevVersionedPackageResult()
277 uprev_result = uprev_android(
278 android_package,
279 chroot,
280 build_targets=build_targets,
Shao-Chuan Lee293389c2023-01-20 17:44:35 +0900281 android_build_branch=android_branch,
Alex Klein1699fab2022-09-08 08:46:06 -0600282 android_version=android_version,
283 skip_commit=True,
284 )
285 if not uprev_result.revved:
286 return result
287
Alex Kleinfee86da2023-01-20 18:40:06 -0700288 # cros_mark_android_as_stable returns paths relative to
289 # |android.OVERLAY_DIR|.
Alex Klein1699fab2022-09-08 08:46:06 -0600290 result.add_result(
291 android_version,
292 [
293 os.path.join(android.OVERLAY_DIR, f)
294 for f in uprev_result.modified_files
295 ],
296 )
Shao-Chuan Lee05e51142021-11-24 12:27:37 +0900297 return result
298
Shao-Chuan Lee05e51142021-11-24 12:27:37 +0900299
300def define_uprev_android_lkgb_handlers():
Alex Klein1699fab2022-09-08 08:46:06 -0600301 """Dynamically define uprev handlers for each Android package"""
Shao-Chuan Lee05e51142021-11-24 12:27:37 +0900302
Alex Klein1699fab2022-09-08 08:46:06 -0600303 def define_handler(android_package):
304 """Defines the uprev handler for an Android package."""
305 full_package_name = "chromeos-base/" + android_package
Shao-Chuan Lee05e51142021-11-24 12:27:37 +0900306
Alex Klein1699fab2022-09-08 08:46:06 -0600307 @uprevs_versioned_package(full_package_name)
308 def _handler(build_targets, _refs, chroot):
309 return uprev_android_lkgb(android_package, build_targets, chroot)
Shao-Chuan Lee05e51142021-11-24 12:27:37 +0900310
Shao-Chuan Leeca2cbcc2022-11-02 08:28:31 +0900311 for android_package in android.GetAllAndroidPackages():
Alex Klein1699fab2022-09-08 08:46:06 -0600312 define_handler(android_package)
Shao-Chuan Lee05e51142021-11-24 12:27:37 +0900313
314
315define_uprev_android_lkgb_handlers()
Alex Klein4de25e82019-08-05 15:58:39 -0600316
317
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -0700318def uprev_build_targets(
Alex Klein1699fab2022-09-08 08:46:06 -0600319 build_targets: Optional[List["build_target_lib.BuildTarget"]],
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -0700320 overlay_type: str,
Alex Klein1699fab2022-09-08 08:46:06 -0600321 chroot: "chroot_lib.Chroot" = None,
322 output_dir: Optional[str] = None,
323):
324 """Uprev the set provided build targets, or all if not specified.
Alex Kleineb77ffa2019-05-28 14:47:44 -0600325
Alex Klein1699fab2022-09-08 08:46:06 -0600326 Args:
Alex Klein348e7692022-10-13 17:03:37 -0600327 build_targets: The build targets whose overlays should be uprevved,
328 empty or None for all.
329 overlay_type: One of the valid overlay types except None (see
330 constants.VALID_OVERLAYS).
331 chroot: The chroot to clean, if desired.
332 output_dir: The path to optionally dump result files.
Alex Klein1699fab2022-09-08 08:46:06 -0600333 """
334 # Need a valid overlay, but exclude None.
335 assert overlay_type and overlay_type in constants.VALID_OVERLAYS
Alex Kleineb77ffa2019-05-28 14:47:44 -0600336
Alex Klein1699fab2022-09-08 08:46:06 -0600337 if build_targets:
338 overlays = portage_util.FindOverlaysForBoards(
339 overlay_type, boards=[t.name for t in build_targets]
340 )
341 else:
342 overlays = portage_util.FindOverlays(overlay_type)
Alex Kleineb77ffa2019-05-28 14:47:44 -0600343
Alex Klein1699fab2022-09-08 08:46:06 -0600344 return uprev_overlays(
345 overlays,
346 build_targets=build_targets,
347 chroot=chroot,
348 output_dir=output_dir,
349 )
Alex Kleineb77ffa2019-05-28 14:47:44 -0600350
351
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -0700352def uprev_overlays(
353 overlays: List[str],
Alex Klein1699fab2022-09-08 08:46:06 -0600354 build_targets: Optional[List["build_target_lib.BuildTarget"]] = None,
355 chroot: Optional["chroot_lib.Chroot"] = None,
356 output_dir: Optional[str] = None,
357) -> List[str]:
358 """Uprev the given overlays.
Alex Kleineb77ffa2019-05-28 14:47:44 -0600359
Alex Klein1699fab2022-09-08 08:46:06 -0600360 Args:
Alex Klein348e7692022-10-13 17:03:37 -0600361 overlays: The list of overlay paths.
362 build_targets: The build targets to clean in |chroot|, if desired. No
363 effect unless |chroot| is provided.
364 chroot: The chroot to clean, if desired.
365 output_dir: The path to optionally dump result files.
Alex Kleineb77ffa2019-05-28 14:47:44 -0600366
Alex Klein1699fab2022-09-08 08:46:06 -0600367 Returns:
Alex Klein348e7692022-10-13 17:03:37 -0600368 The paths to all the modified ebuild files. This includes the new files
369 that were added (i.e. the new versions) and all the removed files
Alex Klein1699fab2022-09-08 08:46:06 -0600370 (i.e. the old versions).
371 """
372 assert overlays
Alex Kleineb77ffa2019-05-28 14:47:44 -0600373
Alex Klein1699fab2022-09-08 08:46:06 -0600374 manifest = git.ManifestCheckout.Cached(constants.SOURCE_ROOT)
Alex Kleineb77ffa2019-05-28 14:47:44 -0600375
Alex Klein1699fab2022-09-08 08:46:06 -0600376 uprev_manager = uprev_lib.UprevOverlayManager(
377 overlays,
378 manifest,
379 build_targets=build_targets,
380 chroot=chroot,
381 output_dir=output_dir,
382 )
383 uprev_manager.uprev()
Alex Kleineb77ffa2019-05-28 14:47:44 -0600384
Alex Klein1699fab2022-09-08 08:46:06 -0600385 return uprev_manager.modified_ebuilds, uprev_manager.revved_packages
Alex Kleineb77ffa2019-05-28 14:47:44 -0600386
387
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -0700388def uprev_versioned_package(
Alex Kleind3b84042023-05-19 14:43:59 -0600389 package: package_info.PackageInfo,
Alex Klein1699fab2022-09-08 08:46:06 -0600390 build_targets: List["build_target_lib.BuildTarget"],
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -0700391 refs: List[uprev_lib.GitRef],
Alex Klein1699fab2022-09-08 08:46:06 -0600392 chroot: "chroot_lib.Chroot",
393) -> "uprev_lib.UprevVersionedPackageResult":
394 """Call registered uprev handler function for the package.
Alex Klein87531182019-08-12 15:23:37 -0600395
Alex Klein1699fab2022-09-08 08:46:06 -0600396 Args:
Alex Klein348e7692022-10-13 17:03:37 -0600397 package: The package being uprevved.
398 build_targets: The build targets to clean on a successful uprev.
399 refs:
400 chroot: The chroot to enter for cleaning.
Alex Klein87531182019-08-12 15:23:37 -0600401
Alex Klein1699fab2022-09-08 08:46:06 -0600402 Returns:
Alex Klein348e7692022-10-13 17:03:37 -0600403 The result.
Alex Klein1699fab2022-09-08 08:46:06 -0600404 """
405 assert package
Alex Klein87531182019-08-12 15:23:37 -0600406
Alex Klein1699fab2022-09-08 08:46:06 -0600407 if package.cp not in _UPREV_FUNCS:
408 raise UnknownPackageError(
409 'Package "%s" does not have a registered handler.' % package.cp
410 )
Alex Klein87531182019-08-12 15:23:37 -0600411
Alex Klein1699fab2022-09-08 08:46:06 -0600412 return _UPREV_FUNCS[package.cp](build_targets, refs, chroot)
Alex Klein87531182019-08-12 15:23:37 -0600413
414
Alex Klein1699fab2022-09-08 08:46:06 -0600415@uprevs_versioned_package("media-libs/virglrenderer")
Navil Perezf57ba872020-06-04 22:38:37 +0000416def uprev_virglrenderer(_build_targets, refs, _chroot):
Alex Klein1699fab2022-09-08 08:46:06 -0600417 """Updates virglrenderer ebuilds.
Navil Perezf57ba872020-06-04 22:38:37 +0000418
Alex Klein1699fab2022-09-08 08:46:06 -0600419 See: uprev_versioned_package.
Navil Perezf57ba872020-06-04 22:38:37 +0000420
Alex Klein1699fab2022-09-08 08:46:06 -0600421 Returns:
Alex Klein348e7692022-10-13 17:03:37 -0600422 UprevVersionedPackageResult: The result of updating virglrenderer
Trent Aptedb18e36f2023-05-10 15:06:38 +1000423 ebuilds.
Alex Klein1699fab2022-09-08 08:46:06 -0600424 """
425 overlay = os.path.join(
426 constants.SOURCE_ROOT, constants.CHROMIUMOS_OVERLAY_DIR
427 )
428 repo_path = os.path.join(
429 constants.SOURCE_ROOT, "src", "third_party", "virglrenderer"
430 )
431 manifest = git.ManifestCheckout.Cached(repo_path)
Navil Perezf57ba872020-06-04 22:38:37 +0000432
Alex Klein1699fab2022-09-08 08:46:06 -0600433 uprev_manager = uprev_lib.UprevOverlayManager([overlay], manifest)
434 # TODO(crbug.com/1066242): Ebuilds for virglrenderer are currently
435 # denylisted. Do not force uprevs after builder is stable and ebuilds are no
436 # longer denylisted.
437 uprev_manager.uprev(package_list=["media-libs/virglrenderer"], force=True)
Navil Perezf57ba872020-06-04 22:38:37 +0000438
Alex Klein1699fab2022-09-08 08:46:06 -0600439 updated_files = uprev_manager.modified_ebuilds
440 result = uprev_lib.UprevVersionedPackageResult()
441 result.add_result(refs[-1].revision, updated_files)
442 return result
Navil Perezf57ba872020-06-04 22:38:37 +0000443
Alex Klein1699fab2022-09-08 08:46:06 -0600444
Matthew Lam59ca37d2022-10-24 18:11:06 +0000445@uprevs_versioned_package("x11-apps/igt-gpu-tools")
446def uprev_igt_gpu_tools(_build_targets, refs, _chroot):
447 """Updates igt-gpu-tools ebuilds.
448
449 See: uprev_versioned_package.
450
451 Returns:
Alex Kleinfee86da2023-01-20 18:40:06 -0700452 UprevVersionedPackageResult: The result of updating igt-gpu-tools
Trent Aptedb18e36f2023-05-10 15:06:38 +1000453 ebuilds.
Matthew Lam59ca37d2022-10-24 18:11:06 +0000454 """
455 overlay = os.path.join(
456 constants.SOURCE_ROOT, constants.CHROMIUMOS_OVERLAY_DIR
457 )
458 repo_path = os.path.join(
459 constants.SOURCE_ROOT, "src", "third_party", "igt-gpu-tools"
460 )
461 manifest = git.ManifestCheckout.Cached(repo_path)
462
463 uprev_manager = uprev_lib.UprevOverlayManager([overlay], manifest)
464 uprev_manager.uprev(package_list=["x11-apps/igt-gpu-tools"], force=True)
465
466 updated_files = uprev_manager.modified_ebuilds
467 result = uprev_lib.UprevVersionedPackageResult()
468 result.add_result(refs[-1].revision, updated_files)
469 return result
470
471
Alex Klein1699fab2022-09-08 08:46:06 -0600472@uprevs_versioned_package("chromeos-base/drivefs")
Jose Magana03b5a842020-08-19 12:52:59 +1000473def uprev_drivefs(_build_targets, refs, chroot):
Alex Klein1699fab2022-09-08 08:46:06 -0600474 """Updates drivefs ebuilds.
Jose Magana03b5a842020-08-19 12:52:59 +1000475
Alex Klein1699fab2022-09-08 08:46:06 -0600476 DriveFS versions follow the tag format of refs/tags/drivefs_1.2.3.
477 See: uprev_versioned_package.
Jose Magana03b5a842020-08-19 12:52:59 +1000478
Alex Klein1699fab2022-09-08 08:46:06 -0600479 Returns:
Alex Klein348e7692022-10-13 17:03:37 -0600480 UprevVersionedPackageResult: The result of updating drivefs ebuilds.
Alex Klein1699fab2022-09-08 08:46:06 -0600481 """
Jose Magana03b5a842020-08-19 12:52:59 +1000482
Alex Klein1699fab2022-09-08 08:46:06 -0600483 DRIVEFS_PATH_PREFIX = "src/private-overlays/chromeos-overlay/chromeos-base"
484 result = uprev_lib.UprevVersionedPackageResult()
485 all_changed_files = []
Jose Magana03b5a842020-08-19 12:52:59 +1000486
Alex Klein1699fab2022-09-08 08:46:06 -0600487 DRIVEFS_REFS_PREFIX = "refs/tags/drivefs_"
488 drivefs_version = _get_latest_version_from_refs(DRIVEFS_REFS_PREFIX, refs)
489 if not drivefs_version:
490 # No valid DriveFS version is identified.
491 return result
492
493 logging.debug("DriveFS version determined from refs: %s", drivefs_version)
494
495 # Attempt to uprev drivefs package.
496 pkg_path = os.path.join(DRIVEFS_PATH_PREFIX, "drivefs")
497 uprev_result = uprev_lib.uprev_workon_ebuild_to_version(
498 pkg_path, drivefs_version, chroot, allow_downrev=False
499 )
500
501 if not uprev_result:
502 return result
503 all_changed_files.extend(uprev_result.changed_files)
504 result.add_result(drivefs_version, all_changed_files)
505
Ben Reich4f3fa1b2020-12-19 08:21:26 +0000506 return result
Jose Magana03b5a842020-08-19 12:52:59 +1000507
Jose Magana03b5a842020-08-19 12:52:59 +1000508
Alex Klein1699fab2022-09-08 08:46:06 -0600509@uprevs_versioned_package("chromeos-base/perfetto")
Chinglin Yufa728552023-04-13 03:12:04 +0000510@uprevs_versioned_package("dev-go/perfetto-protos")
Harvey Yang9c61e9c2021-03-02 16:32:43 +0800511def uprev_perfetto(_build_targets, refs, chroot):
Alex Klein1699fab2022-09-08 08:46:06 -0600512 """Updates Perfetto ebuilds.
Harvey Yang9c61e9c2021-03-02 16:32:43 +0800513
Alex Klein1699fab2022-09-08 08:46:06 -0600514 Perfetto versions follow the tag format of refs/tags/v1.2.
515 See: uprev_versioned_package.
Harvey Yang9c61e9c2021-03-02 16:32:43 +0800516
Alex Klein1699fab2022-09-08 08:46:06 -0600517 Returns:
Alex Klein348e7692022-10-13 17:03:37 -0600518 UprevVersionedPackageResult: The result of updating Perfetto ebuilds.
Alex Klein1699fab2022-09-08 08:46:06 -0600519 """
520 result = uprev_lib.UprevVersionedPackageResult()
Harvey Yang9c61e9c2021-03-02 16:32:43 +0800521
Alex Klein1699fab2022-09-08 08:46:06 -0600522 PERFETTO_REFS_PREFIX = "refs/tags/v"
Chinglin Yufa728552023-04-13 03:12:04 +0000523
524 perfetto_ebuilds = ["chromeos-base/perfetto", "dev-go/perfetto-protos"]
525 perfetto_paths = [
526 os.path.join(constants.CHROMIUMOS_OVERLAY_DIR, e)
527 for e in perfetto_ebuilds
528 ]
529 # chromeos-base/perfetto is the primary ebuild.
530 primary_ebuild_path = perfetto_paths[0]
Chinglin Yuad12a512022-10-07 17:26:12 +0800531
532 # Decide the version number to uprev to:
533 # * If |refs| contains refs/tags/v*, get the latest from them.
Alex Klein1699fab2022-09-08 08:46:06 -0600534 perfetto_version = _get_latest_version_from_refs(PERFETTO_REFS_PREFIX, refs)
Chinglin Yuad12a512022-10-07 17:26:12 +0800535 # * Or if |refs| contains only the latest trunk revisions, use the current
536 # stable ebuild version for a revision bump.
537 if refs and not perfetto_version:
Chinglin Yufa728552023-04-13 03:12:04 +0000538 perfetto_version = uprev_lib.get_stable_ebuild_version(
539 primary_ebuild_path
540 )
Chinglin Yuad12a512022-10-07 17:26:12 +0800541
Alex Klein1699fab2022-09-08 08:46:06 -0600542 if not perfetto_version:
543 # No valid Perfetto version is identified.
544 return result
545
Chinglin Yufa728552023-04-13 03:12:04 +0000546 for path in perfetto_paths:
547 # Attempt to uprev perfetto package.
548 # |perfetto_version| is only used in determining the ebuild version. The
549 # package is always updated to the latest HEAD.
550 uprev_result = uprev_lib.uprev_workon_ebuild_to_version(
551 path,
552 perfetto_version,
553 chroot,
554 allow_downrev=False,
555 # Use default ref="HEAD"
556 )
Alex Klein1699fab2022-09-08 08:46:06 -0600557
Chinglin Yufa728552023-04-13 03:12:04 +0000558 if not uprev_result:
559 return result
Alex Klein1699fab2022-09-08 08:46:06 -0600560
Chinglin Yufa728552023-04-13 03:12:04 +0000561 # Include short git sha hash in the uprev commit message.
562 # Use 9 digits to match the short hash length in `perfetto --version`.
563 short_revision = refs[-1].revision[0:9]
564 version_and_rev = f"{perfetto_version}-{short_revision}"
565 result.add_result(version_and_rev, uprev_result.changed_files)
Alex Klein1699fab2022-09-08 08:46:06 -0600566
Harvey Yang9c61e9c2021-03-02 16:32:43 +0800567 return result
568
Harvey Yang9c61e9c2021-03-02 16:32:43 +0800569
Denis Nikitin63613e32022-09-09 22:26:50 -0700570class AfdoMetadata(NamedTuple):
571 """Data class holding AFDO metadata."""
572
573 var_name: str
574 path: str
575
576
Alex Klein1699fab2022-09-08 08:46:06 -0600577@uprevs_versioned_package("afdo/kernel-profiles")
Yaakov Shaul395ae832019-09-09 14:45:32 -0600578def uprev_kernel_afdo(*_args, **_kwargs):
Alex Klein1699fab2022-09-08 08:46:06 -0600579 """Updates kernel ebuilds with versions from kernel_afdo.json.
Yaakov Shaul395ae832019-09-09 14:45:32 -0600580
Alex Klein1699fab2022-09-08 08:46:06 -0600581 See: uprev_versioned_package.
Yaakov Shaul1eafe832019-09-10 16:50:26 -0600582
Alex Klein1699fab2022-09-08 08:46:06 -0600583 Raises:
Alex Klein348e7692022-10-13 17:03:37 -0600584 EbuildManifestError: When ebuild manifest does not complete
585 successfully.
586 JSONDecodeError: When json is malformed.
Alex Klein1699fab2022-09-08 08:46:06 -0600587 """
Denis Nikitin63613e32022-09-09 22:26:50 -0700588 metadata_dir = os.path.join(
Alex Klein1699fab2022-09-08 08:46:06 -0600589 constants.SOURCE_ROOT,
590 "src",
591 "third_party",
592 "toolchain-utils",
593 "afdo_metadata",
Denis Nikitin63613e32022-09-09 22:26:50 -0700594 )
595 metadata_files = (
596 AfdoMetadata(
597 var_name="AFDO_PROFILE_VERSION",
598 path=os.path.join(metadata_dir, "kernel_afdo.json"),
599 ),
600 AfdoMetadata(
601 var_name="ARM_AFDO_PROFILE_VERSION",
602 path=os.path.join(metadata_dir, "kernel_arm_afdo.json"),
603 ),
Alex Klein1699fab2022-09-08 08:46:06 -0600604 )
Yaakov Shaul395ae832019-09-09 14:45:32 -0600605
Alex Klein1699fab2022-09-08 08:46:06 -0600606 result = uprev_lib.UprevVersionedPackageResult()
Denis Nikitin63613e32022-09-09 22:26:50 -0700607 for metadata in metadata_files:
Mike Frysinger81a98062023-02-24 15:42:04 -0500608 with open(metadata.path, "r", encoding="utf-8") as f:
Denis Nikitin63613e32022-09-09 22:26:50 -0700609 versions = json.load(f)
Yaakov Shaul1eafe832019-09-10 16:50:26 -0600610
Denis Nikitin63613e32022-09-09 22:26:50 -0700611 for kernel_pkg, version_info in versions.items():
612 path = os.path.join(
613 constants.CHROMIUMOS_OVERLAY_DIR, "sys-kernel", kernel_pkg
614 )
615 ebuild_path = os.path.join(
616 constants.SOURCE_ROOT, path, f"{kernel_pkg}-9999.ebuild"
617 )
618 chroot_ebuild_path = os.path.join(
619 constants.CHROOT_SOURCE_ROOT, path, f"{kernel_pkg}-9999.ebuild"
620 )
621 afdo_profile_version = version_info["name"]
622 patch_ebuild_vars(
623 ebuild_path, {metadata.var_name: afdo_profile_version}
Alex Klein1699fab2022-09-08 08:46:06 -0600624 )
Yaakov Shaul1eafe832019-09-10 16:50:26 -0600625
Denis Nikitin63613e32022-09-09 22:26:50 -0700626 try:
627 cmd = ["ebuild", chroot_ebuild_path, "manifest", "--force"]
628 cros_build_lib.run(cmd, enter_chroot=True)
629 except cros_build_lib.RunCommandError as e:
630 raise uprev_lib.EbuildManifestError(
631 "Error encountered when regenerating the manifest for "
632 f"ebuild: {chroot_ebuild_path}\n{e}",
633 e,
634 )
Yaakov Shaul1eafe832019-09-10 16:50:26 -0600635
Denis Nikitin63613e32022-09-09 22:26:50 -0700636 manifest_path = os.path.join(
637 constants.SOURCE_ROOT, path, "Manifest"
638 )
639 result.add_result(
640 afdo_profile_version, [ebuild_path, manifest_path]
641 )
Yaakov Shaul730814a2019-09-10 13:58:25 -0600642
Alex Klein1699fab2022-09-08 08:46:06 -0600643 return result
Yaakov Shaul395ae832019-09-09 14:45:32 -0600644
645
Alex Klein1699fab2022-09-08 08:46:06 -0600646@uprevs_versioned_package("chromeos-base/termina-dlc")
647@uprevs_versioned_package("chromeos-base/termina-tools-dlc")
Maciek Swiech6b12f662022-01-25 16:51:19 +0000648def uprev_termina_dlcs(_build_targets, _refs, chroot):
Alex Klein1699fab2022-09-08 08:46:06 -0600649 """Updates shared termina-dlc and termina-tools-dlc ebuilds.
Maciek Swiech6b12f662022-01-25 16:51:19 +0000650
Alex Klein1699fab2022-09-08 08:46:06 -0600651 termina-dlc - chromeos-base/termina-dlc
652 termina-tools-dlc - chromeos-base/termina-tools-dlc
Trent Beginaf51f1b2020-03-09 17:35:31 -0600653
Alex Klein1699fab2022-09-08 08:46:06 -0600654 See: uprev_versioned_package.
655 """
656 termina_dlc_pkg = "termina-dlc"
657 termina_dlc_pkg_path = os.path.join(
658 constants.CHROMIUMOS_OVERLAY_DIR, "chromeos-base", termina_dlc_pkg
659 )
660 tools_dlc_pkg = "termina-tools-dlc"
661 tools_dlc_pkg_path = os.path.join(
662 constants.CHROMIUMOS_OVERLAY_DIR, "chromeos-base", tools_dlc_pkg
663 )
Patrick Meiring5897add2020-09-16 16:30:17 +1000664
Alex Klein1699fab2022-09-08 08:46:06 -0600665 # termina-dlc and termina-tools-dlc are pinned to the same version.
666 version_pin_src_path = _get_version_pin_src_path(termina_dlc_pkg_path)
667 version_no_rev = osutils.ReadFile(version_pin_src_path).strip()
Patrick Meiring5897add2020-09-16 16:30:17 +1000668
Alex Klein1699fab2022-09-08 08:46:06 -0600669 result = uprev_lib.uprev_ebuild_from_pin(
670 termina_dlc_pkg_path, version_no_rev, chroot
671 )
672 result += uprev_lib.uprev_ebuild_from_pin(
673 tools_dlc_pkg_path, version_no_rev, chroot
674 )
Patrick Meiring5897add2020-09-16 16:30:17 +1000675
Alex Klein1699fab2022-09-08 08:46:06 -0600676 return result
Patrick Meiring5897add2020-09-16 16:30:17 +1000677
Alex Klein1699fab2022-09-08 08:46:06 -0600678
679@uprevs_versioned_package("chromeos-base/chromeos-lacros")
Julio Hurtadof1befec2021-05-05 21:34:26 +0000680def uprev_lacros(_build_targets, refs, chroot):
Alex Klein1699fab2022-09-08 08:46:06 -0600681 """Updates lacros ebuilds.
Julio Hurtadof1befec2021-05-05 21:34:26 +0000682
Alex Klein1699fab2022-09-08 08:46:06 -0600683 Version to uprev to is gathered from the QA qualified version tracking file
Alex Kleinfee86da2023-01-20 18:40:06 -0700684 stored in chromium/src/chrome/LACROS_QA_QUALIFIED_VERSION. Uprev is
685 triggered on modification of this file across all chromium/src branches.
Julio Hurtadof1befec2021-05-05 21:34:26 +0000686
Alex Klein1699fab2022-09-08 08:46:06 -0600687 See: uprev_versioned_package.
688 """
689 result = uprev_lib.UprevVersionedPackageResult()
690 path = os.path.join(
691 constants.CHROMIUMOS_OVERLAY_DIR, "chromeos-base", "chromeos-lacros"
692 )
693 lacros_version = refs[0].revision
694 uprev_result = uprev_lib.uprev_workon_ebuild_to_version(
695 path, lacros_version, chroot, allow_downrev=False
696 )
Julio Hurtadoa994e002021-07-07 17:57:45 +0000697
Alex Klein1699fab2022-09-08 08:46:06 -0600698 if not uprev_result:
699 return result
700
701 result.add_result(lacros_version, uprev_result.changed_files)
Julio Hurtadoa994e002021-07-07 17:57:45 +0000702 return result
703
Julio Hurtadof1befec2021-05-05 21:34:26 +0000704
Alex Klein1699fab2022-09-08 08:46:06 -0600705@uprevs_versioned_package("chromeos-base/chromeos-lacros-parallel")
Julio Hurtado870ed322021-12-03 18:22:40 +0000706def uprev_lacros_in_parallel(
Alex Klein1699fab2022-09-08 08:46:06 -0600707 _build_targets: Optional[List["build_target_lib.BuildTarget"]],
Julio Hurtado870ed322021-12-03 18:22:40 +0000708 refs: List[uprev_lib.GitRef],
Alex Klein1699fab2022-09-08 08:46:06 -0600709 chroot: "chroot_lib.Chroot",
710) -> "uprev_lib.UprevVersionedPackageResult":
711 """Updates lacros ebuilds in parallel with ash-chrome.
Julio Hurtado870ed322021-12-03 18:22:40 +0000712
Alex Kleinfee86da2023-01-20 18:40:06 -0700713 This handler is going to be used temporarily while lacros transitions to
714 being uprevved atomically with ash-chrome. Unlike a standalone lacros uprev,
715 this handler will not need to look at the QA qualified file. Rather, it will
Alex Klein1699fab2022-09-08 08:46:06 -0600716 function identical to ash-chrome using git tags.
Julio Hurtado870ed322021-12-03 18:22:40 +0000717
Alex Klein1699fab2022-09-08 08:46:06 -0600718 See: uprev_versioned_package.
Julio Hurtado870ed322021-12-03 18:22:40 +0000719
Alex Klein1699fab2022-09-08 08:46:06 -0600720 Returns:
Alex Klein348e7692022-10-13 17:03:37 -0600721 UprevVersionedPackageResult: The result.
Alex Klein1699fab2022-09-08 08:46:06 -0600722 """
723 result = uprev_lib.UprevVersionedPackageResult()
724 path = os.path.join(
725 constants.CHROMIUMOS_OVERLAY_DIR, "chromeos-base", "chromeos-lacros"
726 )
727 lacros_version = uprev_lib.get_version_from_refs(refs)
728 uprev_result = uprev_lib.uprev_workon_ebuild_to_version(
729 path, lacros_version, chroot, allow_downrev=False
730 )
Julio Hurtado870ed322021-12-03 18:22:40 +0000731
Alex Klein1699fab2022-09-08 08:46:06 -0600732 if not uprev_result:
733 return result
734
735 result.add_result(lacros_version, uprev_result.changed_files)
Julio Hurtado870ed322021-12-03 18:22:40 +0000736 return result
737
Julio Hurtado870ed322021-12-03 18:22:40 +0000738
Alex Klein1699fab2022-09-08 08:46:06 -0600739@uprevs_versioned_package("app-emulation/parallels-desktop")
Patrick Meiring5897add2020-09-16 16:30:17 +1000740def uprev_parallels_desktop(_build_targets, _refs, chroot):
Alex Klein1699fab2022-09-08 08:46:06 -0600741 """Updates Parallels Desktop ebuild - app-emulation/parallels-desktop.
Patrick Meiring5897add2020-09-16 16:30:17 +1000742
Alex Klein1699fab2022-09-08 08:46:06 -0600743 See: uprev_versioned_package
Patrick Meiring5897add2020-09-16 16:30:17 +1000744
Alex Klein1699fab2022-09-08 08:46:06 -0600745 Returns:
Alex Klein348e7692022-10-13 17:03:37 -0600746 UprevVersionedPackageResult: The result.
Alex Klein1699fab2022-09-08 08:46:06 -0600747 """
748 package = "parallels-desktop"
749 package_path = os.path.join(
750 constants.CHROMEOS_PARTNER_OVERLAY_DIR, "app-emulation", package
751 )
752 version_pin_src_path = _get_version_pin_src_path(package_path)
Patrick Meiring5897add2020-09-16 16:30:17 +1000753
Alex Klein1699fab2022-09-08 08:46:06 -0600754 # Expect a JSON blob like the following:
755 # {
756 # "version": "1.2.3",
757 # "test_image": { "url": "...", "size": 12345678,
758 # "sha256sum": "<32 bytes of hexadecimal>" }
759 # }
Mike Frysinger81a98062023-02-24 15:42:04 -0500760 with open(version_pin_src_path, "r", encoding="utf-8") as f:
Alex Klein1699fab2022-09-08 08:46:06 -0600761 pinned = json.load(f)
Patrick Meiring5897add2020-09-16 16:30:17 +1000762
Alex Klein1699fab2022-09-08 08:46:06 -0600763 if "version" not in pinned or "test_image" not in pinned:
764 raise UprevError(
Trent Aptedb18e36f2023-05-10 15:06:38 +1000765 "VERSION-PIN for %s missing version and/or test_image field"
766 % package
Alex Klein1699fab2022-09-08 08:46:06 -0600767 )
Patrick Meiring5897add2020-09-16 16:30:17 +1000768
Alex Klein1699fab2022-09-08 08:46:06 -0600769 version = pinned["version"]
770 if not isinstance(version, str):
771 raise UprevError("version in VERSION-PIN for %s not a string" % package)
Patrick Meiring5897add2020-09-16 16:30:17 +1000772
Alex Klein1699fab2022-09-08 08:46:06 -0600773 # Update the ebuild.
774 result = uprev_lib.uprev_ebuild_from_pin(package_path, version, chroot)
Patrick Meiring5897add2020-09-16 16:30:17 +1000775
Alex Klein1699fab2022-09-08 08:46:06 -0600776 # Update the VM image used for testing.
777 test_image_path = (
Dmitry Torokhov257eba12023-05-30 13:42:48 -0700778 "src/go.chromium.org/tast-tests-private/crosint/"
Alex Klein1699fab2022-09-08 08:46:06 -0600779 "local/bundles/crosint/pita/data/"
780 "pluginvm_image.zip.external"
781 )
782 test_image_src_path = os.path.join(constants.SOURCE_ROOT, test_image_path)
Mike Frysinger81a98062023-02-24 15:42:04 -0500783 with open(test_image_src_path, "w", encoding="utf-8") as f:
Alex Klein1699fab2022-09-08 08:46:06 -0600784 json.dump(pinned["test_image"], f, indent=2)
785 result.add_result(version, [test_image_src_path])
Patrick Meiring5897add2020-09-16 16:30:17 +1000786
Alex Klein1699fab2022-09-08 08:46:06 -0600787 return result
Trent Beginaf51f1b2020-03-09 17:35:31 -0600788
789
Alex Klein1699fab2022-09-08 08:46:06 -0600790@uprevs_versioned_package("chromeos-base/chromeos-dtc-vm")
Trent Beginaf51f1b2020-03-09 17:35:31 -0600791def uprev_sludge(_build_targets, _refs, chroot):
Alex Klein1699fab2022-09-08 08:46:06 -0600792 """Updates sludge VM - chromeos-base/chromeos-dtc-vm.
Trent Begin315d9d92019-12-03 21:55:53 -0700793
Alex Klein1699fab2022-09-08 08:46:06 -0600794 See: uprev_versioned_package.
795 """
796 package = "chromeos-dtc-vm"
797 package_path = os.path.join(
798 "src",
799 "private-overlays",
800 "project-wilco-private",
801 "chromeos-base",
802 package,
803 )
804 version_pin_src_path = _get_version_pin_src_path(package_path)
805 version_no_rev = osutils.ReadFile(version_pin_src_path).strip()
Trent Begin315d9d92019-12-03 21:55:53 -0700806
Alex Klein1699fab2022-09-08 08:46:06 -0600807 return uprev_lib.uprev_ebuild_from_pin(package_path, version_no_rev, chroot)
Trent Begin315d9d92019-12-03 21:55:53 -0700808
809
Alex Klein1699fab2022-09-08 08:46:06 -0600810@uprevs_versioned_package("chromeos-base/borealis-dlc")
David Riley8513c1f2021-10-14 17:07:41 -0700811def uprev_borealis_dlc(_build_targets, _refs, chroot):
Alex Klein1699fab2022-09-08 08:46:06 -0600812 """Updates shared borealis-dlc ebuild - chromeos-base/borealis-dlc.
David Riley8513c1f2021-10-14 17:07:41 -0700813
Alex Klein1699fab2022-09-08 08:46:06 -0600814 See: uprev_versioned_package.
815 """
816 package_path = os.path.join(
817 "src",
818 "private-overlays",
819 "chromeos-partner-overlay",
820 "chromeos-base",
821 "borealis-dlc",
822 )
David Riley8513c1f2021-10-14 17:07:41 -0700823
Alex Klein1699fab2022-09-08 08:46:06 -0600824 version_pin_src_path = _get_version_pin_src_path(package_path)
825 version_no_rev = osutils.ReadFile(version_pin_src_path).strip()
David Riley8513c1f2021-10-14 17:07:41 -0700826
Alex Klein1699fab2022-09-08 08:46:06 -0600827 return uprev_lib.uprev_ebuild_from_pin(package_path, version_no_rev, chroot)
David Riley8513c1f2021-10-14 17:07:41 -0700828
829
Po-Hsien Wang92fb1e52023-04-27 11:35:04 -0700830@uprevs_versioned_package("chromeos-base/borealis-dlc-nvidia")
831def uprev_borealis_dlc_nvidia(_build_targets, _refs, chroot):
Trent Apted380d1c62023-05-16 09:19:31 +1000832 """Updates shared chromeos-base/borealis-dlc-nvidia ebuild.
Po-Hsien Wang92fb1e52023-04-27 11:35:04 -0700833
834 See: uprev_versioned_package.
835 """
836 package_path = os.path.join(
837 "src",
838 "private-overlays",
839 "chromeos-partner-overlay",
840 "chromeos-base",
841 "borealis-dlc-nvidia",
842 )
843
844 version_pin_src_path = _get_version_pin_src_path(package_path)
845 version_no_rev = osutils.ReadFile(version_pin_src_path).strip()
846
847 return uprev_lib.uprev_ebuild_from_pin(package_path, version_no_rev, chroot)
848
849
Syed Faaiz Hussainef29cf82023-06-06 22:14:07 -0700850@uprevs_versioned_package("chromeos-base/borealis-dlc-chroot")
851def uprev_borealis_dlc_chroot(_build_targets, _refs, chroot):
852 """Updates shared borealis-dlc-chroot ebuild - chromeos-base/borealis-dlc-chroot.
853
854 See: uprev_versioned_package.
855 """
856 package_path = os.path.join(
857 "src",
858 "private-overlays",
859 "chromeos-partner-overlay",
860 "chromeos-base",
861 "borealis-dlc-chroot",
862 )
863
864 version_pin_src_path = _get_version_pin_src_path(package_path)
865 version_no_rev = osutils.ReadFile(version_pin_src_path).strip()
866
867 return uprev_lib.uprev_ebuild_from_pin(package_path, version_no_rev, chroot)
868
869
Patrick Meiring5897add2020-09-16 16:30:17 +1000870def _get_version_pin_src_path(package_path):
Alex Klein1699fab2022-09-08 08:46:06 -0600871 """Returns the path to the VERSION-PIN file for the given package."""
872 return os.path.join(constants.SOURCE_ROOT, package_path, "VERSION-PIN")
Patrick Meiring5897add2020-09-16 16:30:17 +1000873
874
Alex Klein87531182019-08-12 15:23:37 -0600875@uprevs_versioned_package(constants.CHROME_CP)
Alex Klein4e839252022-01-06 13:29:18 -0700876def uprev_chrome_from_ref(build_targets, refs, _chroot):
Alex Klein1699fab2022-09-08 08:46:06 -0600877 """Uprev chrome and its related packages.
Alex Klein87531182019-08-12 15:23:37 -0600878
Alex Klein1699fab2022-09-08 08:46:06 -0600879 See: uprev_versioned_package.
880 """
Alex Kleinfee86da2023-01-20 18:40:06 -0700881 # Determine the version from the refs (tags), i.e. the chrome versions are
882 # the tag names.
Alex Klein1699fab2022-09-08 08:46:06 -0600883 chrome_version = uprev_lib.get_version_from_refs(refs)
884 logging.debug("Chrome version determined from refs: %s", chrome_version)
Alex Klein87531182019-08-12 15:23:37 -0600885
Alex Klein1699fab2022-09-08 08:46:06 -0600886 return uprev_chrome(chrome_version, build_targets, None)
Alex Kleinf69bd802021-06-22 15:43:49 -0600887
888
Alex Klein9ce3f682021-06-23 15:06:44 -0600889def revbump_chrome(
Alex Klein1699fab2022-09-08 08:46:06 -0600890 build_targets: List["build_target_lib.BuildTarget"] = None,
891 chroot: Optional["chroot_lib.Chroot"] = None,
Alex Klein9ce3f682021-06-23 15:06:44 -0600892) -> uprev_lib.UprevVersionedPackageResult:
Alex Klein1699fab2022-09-08 08:46:06 -0600893 """Attempt to revbump chrome.
Alex Kleinf69bd802021-06-22 15:43:49 -0600894
Alex Klein1699fab2022-09-08 08:46:06 -0600895 Revbumps are done by executing an uprev using the current stable version.
896 E.g. if chrome is on 1.2.3.4 and has a 1.2.3.4_rc-r2.ebuild, performing an
897 uprev on version 1.2.3.4 when there are applicable changes (e.g. to the 9999
898 ebuild) will result in a revbump to 1.2.3.4_rc-r3.ebuild.
899 """
900 chrome_version = uprev_lib.get_stable_chrome_version()
901 return uprev_chrome(chrome_version, build_targets, chroot)
Alex Kleinf69bd802021-06-22 15:43:49 -0600902
903
Alex Klein9ce3f682021-06-23 15:06:44 -0600904def uprev_chrome(
Alex Klein16ea1b32021-10-01 15:48:50 -0600905 chrome_version: str,
Alex Klein1699fab2022-09-08 08:46:06 -0600906 build_targets: Optional[List["build_target_lib.BuildTarget"]],
907 chroot: Optional["chroot_lib.Chroot"],
Alex Klein9ce3f682021-06-23 15:06:44 -0600908) -> uprev_lib.UprevVersionedPackageResult:
Alex Klein1699fab2022-09-08 08:46:06 -0600909 """Attempt to uprev chrome and its related packages to the given version."""
910 uprev_manager = uprev_lib.UprevChromeManager(
911 chrome_version, build_targets=build_targets, chroot=chroot
912 )
913 result = uprev_lib.UprevVersionedPackageResult()
914 # TODO(crbug.com/1080429): Handle all possible outcomes of a Chrome uprev
915 # attempt. The expected behavior is documented in the following table:
916 #
917 # Outcome of Chrome uprev attempt:
918 # NEWER_VERSION_EXISTS:
919 # Do nothing.
920 # SAME_VERSION_EXISTS or REVISION_BUMP:
921 # Uprev followers
922 # Assert not VERSION_BUMP (any other outcome is fine)
923 # VERSION_BUMP or NEW_EBUILD_CREATED:
924 # Uprev followers
925 # Assert that Chrome & followers are at same package version
Alex Klein0b2ec2d2021-06-23 15:56:45 -0600926
Alex Klein1699fab2022-09-08 08:46:06 -0600927 # Start with chrome itself so we can proceed accordingly.
928 chrome_result = uprev_manager.uprev(constants.CHROME_CP)
929 if chrome_result.newer_version_exists:
930 # Cannot use the given version (newer version already exists).
931 return result
932
933 # Also uprev related packages.
934 for package in constants.OTHER_CHROME_PACKAGES:
935 follower_result = uprev_manager.uprev(package)
936 if chrome_result.stable_version and follower_result.version_bump:
937 logging.warning(
938 "%s had a version bump, but no more than a revision bump "
939 "should have been possible.",
940 package,
941 )
942
943 if uprev_manager.modified_ebuilds:
944 # Record changes when we have them.
945 return result.add_result(chrome_version, uprev_manager.modified_ebuilds)
946
David Burger37f48672019-09-18 17:07:56 -0600947 return result
Alex Klein87531182019-08-12 15:23:37 -0600948
Alex Klein87531182019-08-12 15:23:37 -0600949
Alex Klein1699fab2022-09-08 08:46:06 -0600950def _get_latest_version_from_refs(
951 refs_prefix: str, refs: List[uprev_lib.GitRef]
952) -> str:
953 """Get the latest version from refs
Alex Klein0b2ec2d2021-06-23 15:56:45 -0600954
Alex Klein1699fab2022-09-08 08:46:06 -0600955 Versions are compared using |distutils.version.LooseVersion| and
956 the latest version is returned.
Alex Klein87531182019-08-12 15:23:37 -0600957
Alex Klein1699fab2022-09-08 08:46:06 -0600958 Args:
Alex Klein348e7692022-10-13 17:03:37 -0600959 refs_prefix: The refs prefix of the tag format.
960 refs: The tags to parse for the latest version.
Alex Klein87531182019-08-12 15:23:37 -0600961
Alex Klein1699fab2022-09-08 08:46:06 -0600962 Returns:
Alex Klein348e7692022-10-13 17:03:37 -0600963 The latest version to use as string.
Alex Klein1699fab2022-09-08 08:46:06 -0600964 """
965 valid_refs = []
966 for gitiles in refs:
967 if gitiles.ref.startswith(refs_prefix):
968 valid_refs.append(gitiles.ref)
Ben Reiche779cf42020-12-15 03:21:31 +0000969
Alex Klein1699fab2022-09-08 08:46:06 -0600970 if not valid_refs:
971 return None
Ben Reiche779cf42020-12-15 03:21:31 +0000972
Alex Klein1699fab2022-09-08 08:46:06 -0600973 # Sort by version and take the latest version.
974 target_version_ref = sorted(valid_refs, key=LooseVersion, reverse=True)[0]
975 return target_version_ref.replace(refs_prefix, "")
Harvey Yang9c61e9c2021-03-02 16:32:43 +0800976
977
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -0700978def _generate_platform_c_files(
979 replication_config: replication_config_pb2.ReplicationConfig,
Alex Klein1699fab2022-09-08 08:46:06 -0600980 chroot: "chroot_lib.Chroot",
981) -> List[str]:
982 """Generates platform C files from a platform JSON payload.
Andrew Lamb9563a152019-12-04 11:42:18 -0700983
Alex Klein1699fab2022-09-08 08:46:06 -0600984 Args:
Alex Klein348e7692022-10-13 17:03:37 -0600985 replication_config: A ReplicationConfig that has already been run. If it
986 produced a build_config.json file, that file will be used to
987 generate platform C files. Otherwise, nothing will be generated.
988 chroot: The chroot to use to generate.
Andrew Lamb9563a152019-12-04 11:42:18 -0700989
Alex Klein1699fab2022-09-08 08:46:06 -0600990 Returns:
Alex Klein348e7692022-10-13 17:03:37 -0600991 A list of generated files.
Alex Klein1699fab2022-09-08 08:46:06 -0600992 """
993 # Generate the platform C files from the build config. Note that it would be
994 # more intuitive to generate the platform C files from the platform config;
Alex Kleinfee86da2023-01-20 18:40:06 -0700995 # however, cros_config_schema does not allow this, because the platform
996 # config payload is not always valid input. For example, if a property is
997 # both 'required' and 'build-only', it will fail schema validation. Thus,
998 # use the build config, and use '-f' to filter.
Alex Klein1699fab2022-09-08 08:46:06 -0600999 build_config_path = [
1000 rule.destination_path
1001 for rule in replication_config.file_replication_rules
1002 if rule.destination_path.endswith("build_config.json")
1003 ]
Andrew Lamb9563a152019-12-04 11:42:18 -07001004
Alex Klein1699fab2022-09-08 08:46:06 -06001005 if not build_config_path:
1006 logging.info(
1007 "No build_config.json found, will not generate platform C files. "
1008 "Replication config: %s",
1009 replication_config,
1010 )
1011 return []
Andrew Lamb9563a152019-12-04 11:42:18 -07001012
Alex Klein1699fab2022-09-08 08:46:06 -06001013 if len(build_config_path) > 1:
1014 raise ValueError(
1015 "Expected at most one build_config.json destination path. "
1016 "Replication config: %s" % replication_config
1017 )
Andrew Lamb9563a152019-12-04 11:42:18 -07001018
Alex Klein1699fab2022-09-08 08:46:06 -06001019 build_config_path = build_config_path[0]
Andrew Lamb9563a152019-12-04 11:42:18 -07001020
Alex Klein1699fab2022-09-08 08:46:06 -06001021 # Paths to the build_config.json and dir to output C files to, in the
1022 # chroot.
1023 build_config_chroot_path = os.path.join(
1024 constants.CHROOT_SOURCE_ROOT, build_config_path
1025 )
1026 generated_output_chroot_dir = os.path.join(
1027 constants.CHROOT_SOURCE_ROOT, os.path.dirname(build_config_path)
1028 )
Andrew Lamb9563a152019-12-04 11:42:18 -07001029
Alex Klein1699fab2022-09-08 08:46:06 -06001030 command = [
1031 "cros_config_schema",
1032 "-m",
1033 build_config_chroot_path,
1034 "-g",
1035 generated_output_chroot_dir,
1036 "-f",
1037 '"TRUE"',
1038 ]
Andrew Lamb9563a152019-12-04 11:42:18 -07001039
Alex Klein1699fab2022-09-08 08:46:06 -06001040 cros_build_lib.run(
1041 command, enter_chroot=True, chroot_args=chroot.get_enter_args()
1042 )
Andrew Lamb9563a152019-12-04 11:42:18 -07001043
Alex Klein1699fab2022-09-08 08:46:06 -06001044 # A relative (to the source root) path to the generated C files.
1045 generated_output_dir = os.path.dirname(build_config_path)
1046 generated_files = []
1047 expected_c_files = ["config.c", "ec_config.c", "ec_config.h"]
1048 for f in expected_c_files:
1049 if os.path.exists(
1050 os.path.join(constants.SOURCE_ROOT, generated_output_dir, f)
1051 ):
1052 generated_files.append(os.path.join(generated_output_dir, f))
Andrew Lamb9563a152019-12-04 11:42:18 -07001053
Alex Klein1699fab2022-09-08 08:46:06 -06001054 if len(expected_c_files) != len(generated_files):
1055 raise GeneratedCrosConfigFilesError(expected_c_files, generated_files)
Andrew Lamb9563a152019-12-04 11:42:18 -07001056
Alex Klein1699fab2022-09-08 08:46:06 -06001057 return generated_files
Andrew Lamb9563a152019-12-04 11:42:18 -07001058
1059
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001060def _get_private_overlay_package_root(ref: uprev_lib.GitRef, package: str):
Alex Klein1699fab2022-09-08 08:46:06 -06001061 """Returns the absolute path to the root of a given private overlay.
Andrew Lambe836f222019-12-09 12:27:38 -07001062
Alex Klein1699fab2022-09-08 08:46:06 -06001063 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001064 ref: GitRef for the private overlay.
1065 package: Path to the package in the overlay.
Alex Klein1699fab2022-09-08 08:46:06 -06001066 """
1067 # There might be a cleaner way to map from package -> path within the source
1068 # tree. For now, just use string patterns.
1069 private_overlay_ref_pattern = (
1070 r"/chromeos\/overlays\/overlay-([\w-]+)-private"
1071 )
1072 match = re.match(private_overlay_ref_pattern, ref.path)
1073 if not match:
1074 raise ValueError(
1075 "ref.path must match the pattern: %s. Actual ref: %s"
1076 % (private_overlay_ref_pattern, ref)
1077 )
Andrew Lambe836f222019-12-09 12:27:38 -07001078
Alex Klein1699fab2022-09-08 08:46:06 -06001079 overlay = match.group(1)
Andrew Lambe836f222019-12-09 12:27:38 -07001080
Alex Klein1699fab2022-09-08 08:46:06 -06001081 return os.path.join(
1082 constants.SOURCE_ROOT,
1083 "src/private-overlays/overlay-%s-private" % overlay,
1084 package,
1085 )
Andrew Lambe836f222019-12-09 12:27:38 -07001086
1087
Alex Klein1699fab2022-09-08 08:46:06 -06001088@uprevs_versioned_package("chromeos-base/chromeos-config-bsp")
Andrew Lambea9a8a22019-12-12 14:03:43 -07001089def replicate_private_config(_build_targets, refs, chroot):
Alex Kleinfee86da2023-01-20 18:40:06 -07001090 """Replicate private cros_config change to the corresponding public config.
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001091
Alex Klein1699fab2022-09-08 08:46:06 -06001092 See uprev_versioned_package for args
1093 """
1094 package = "chromeos-base/chromeos-config-bsp"
Andrew Lambea9a8a22019-12-12 14:03:43 -07001095
Alex Klein1699fab2022-09-08 08:46:06 -06001096 if len(refs) != 1:
1097 raise ValueError("Expected exactly one ref, actual %s" % refs)
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001098
Alex Klein1699fab2022-09-08 08:46:06 -06001099 # Expect a replication_config.jsonpb in the package root.
1100 package_root = _get_private_overlay_package_root(refs[0], package)
1101 replication_config_path = os.path.join(
1102 package_root, "replication_config.jsonpb"
1103 )
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001104
Alex Klein1699fab2022-09-08 08:46:06 -06001105 try:
1106 replication_config = json_format.Parse(
1107 osutils.ReadFile(replication_config_path),
1108 replication_config_pb2.ReplicationConfig(),
1109 )
1110 except IOError:
1111 raise ValueError(
1112 "Expected ReplicationConfig missing at %s" % replication_config_path
1113 )
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001114
Alex Klein1699fab2022-09-08 08:46:06 -06001115 replication_lib.Replicate(replication_config)
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001116
Alex Klein1699fab2022-09-08 08:46:06 -06001117 modified_files = [
1118 rule.destination_path
1119 for rule in replication_config.file_replication_rules
1120 ]
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001121
Alex Kleinfee86da2023-01-20 18:40:06 -07001122 # The generated platform C files are not easily filtered by replication
1123 # rules, i.e. JSON / proto filtering can be described by a FieldMask,
1124 # arbitrary C files cannot. Therefore, replicate and filter the JSON
1125 # payloads, and then generate filtered C files from the JSON payload.
Alex Klein1699fab2022-09-08 08:46:06 -06001126 modified_files.extend(
1127 _generate_platform_c_files(replication_config, chroot)
1128 )
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001129
Alex Klein1699fab2022-09-08 08:46:06 -06001130 # Use the private repo's commit hash as the new version.
1131 new_private_version = refs[0].revision
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001132
Alex Klein1699fab2022-09-08 08:46:06 -06001133 # modified_files should contain only relative paths at this point, but the
1134 # returned UprevVersionedPackageResult must contain only absolute paths.
1135 for i, modified_file in enumerate(modified_files):
1136 assert not os.path.isabs(modified_file)
1137 modified_files[i] = os.path.join(constants.SOURCE_ROOT, modified_file)
Andrew Lamb988f4da2019-12-10 10:16:43 -07001138
Alex Klein1699fab2022-09-08 08:46:06 -06001139 return uprev_lib.UprevVersionedPackageResult().add_result(
1140 new_private_version, modified_files
1141 )
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001142
1143
Alex Klein1699fab2022-09-08 08:46:06 -06001144@uprevs_versioned_package("chromeos-base/crosvm")
Dennis Kempinef05f2b2021-09-08 16:36:49 -07001145def uprev_crosvm(_build_targets, refs, _chroot):
Alex Klein1699fab2022-09-08 08:46:06 -06001146 """Updates crosvm ebuilds to latest revision
Dennis Kempinef05f2b2021-09-08 16:36:49 -07001147
Alex Klein1699fab2022-09-08 08:46:06 -06001148 crosvm is not versioned. We are updating to the latest commit on the main
1149 branch.
Dennis Kempinef05f2b2021-09-08 16:36:49 -07001150
Alex Klein1699fab2022-09-08 08:46:06 -06001151 See: uprev_versioned_package.
Dennis Kempinef05f2b2021-09-08 16:36:49 -07001152
Alex Klein1699fab2022-09-08 08:46:06 -06001153 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001154 UprevVersionedPackageResult: The result of updating crosvm ebuilds.
Alex Klein1699fab2022-09-08 08:46:06 -06001155 """
1156 overlay = os.path.join(
1157 constants.SOURCE_ROOT, constants.CHROMIUMOS_OVERLAY_DIR
1158 )
1159 repo_path = os.path.join(constants.SOURCE_ROOT, "src", "crosvm")
1160 manifest = git.ManifestCheckout.Cached(repo_path)
Dennis Kempinef05f2b2021-09-08 16:36:49 -07001161
Alex Klein1699fab2022-09-08 08:46:06 -06001162 uprev_manager = uprev_lib.UprevOverlayManager([overlay], manifest)
1163 uprev_manager.uprev(
1164 package_list=[
1165 "chromeos-base/crosvm",
1166 "dev-rust/assertions",
1167 "dev-rust/cros_async",
1168 "dev-rust/cros_fuzz",
1169 "dev-rust/data_model",
1170 "dev-rust/enumn",
1171 "dev-rust/io_uring",
1172 "dev-rust/p9",
1173 "dev-rust/sync",
1174 "dev-rust/sys_util",
1175 "dev-rust/tempfile",
1176 "media-sound/audio_streams",
1177 ],
1178 force=True,
1179 )
Dennis Kempinef05f2b2021-09-08 16:36:49 -07001180
Alex Klein1699fab2022-09-08 08:46:06 -06001181 updated_files = uprev_manager.modified_ebuilds
1182 result = uprev_lib.UprevVersionedPackageResult()
1183 result.add_result(refs[0].revision, updated_files)
1184 return result
Dennis Kempinef05f2b2021-09-08 16:36:49 -07001185
1186
Yi Choua4854ac2022-11-14 10:54:24 +08001187@uprevs_versioned_package("chromeos-base/ti50-emulator")
1188def uprev_ti50_emulator(_build_targets, refs, _chroot):
1189 """Updates ti50-emulator ebuilds to latest revision
1190
1191 ti50-emulator is not versioned. We are updating to the latest commit on the
1192 main branch.
1193
1194 See: uprev_versioned_package.
1195
1196 Returns:
1197 UprevVersionedPackageResult: The result of updating ti50-emulator
Trent Aptedb18e36f2023-05-10 15:06:38 +10001198 ebuild.
Yi Choua4854ac2022-11-14 10:54:24 +08001199 """
1200 overlay = os.path.join(
1201 constants.SOURCE_ROOT, constants.CHROMEOS_OVERLAY_DIR
1202 )
1203
1204 # The ti50-emulator will touch multiple repos.
1205 manifest = git.ManifestCheckout.Cached(constants.SOURCE_ROOT)
1206
1207 uprev_manager = uprev_lib.UprevOverlayManager([overlay], manifest)
1208 uprev_manager.uprev(
1209 package_list=["chromeos-base/ti50-emulator"],
1210 force=True,
1211 )
1212
1213 updated_files = uprev_manager.modified_ebuilds
1214 result = uprev_lib.UprevVersionedPackageResult()
1215 result.add_result(refs[-1].revision, updated_files)
1216 return result
1217
1218
Jeremy Bettisaf96afb2023-01-11 16:09:58 -07001219@uprevs_versioned_package("chromeos-base/ec-devutils")
Jeremy Bettis0186d252023-01-19 14:47:46 -07001220def uprev_ecdevutils(_build_targets, refs, _chroot):
1221 """Updates ec-devutils ebuilds to latest revision
1222
Alex Kleinfee86da2023-01-20 18:40:06 -07001223 ec-devutils is not versioned. We are updating to the latest commit on the
1224 main branch.
Jeremy Bettis0186d252023-01-19 14:47:46 -07001225
1226 See: uprev_versioned_package.
1227
1228 Returns:
1229 UprevVersionedPackageResult: The result of updating ec-devutils ebuilds.
1230 """
1231 overlay = os.path.join(
1232 constants.SOURCE_ROOT, constants.CHROMIUMOS_OVERLAY_DIR
1233 )
1234 repo_path = os.path.join(constants.SOURCE_ROOT, "src", "platform", "ec")
1235 manifest = git.ManifestCheckout.Cached(repo_path)
1236
1237 uprev_manager = uprev_lib.UprevOverlayManager([overlay], manifest)
1238 uprev_manager.uprev(
1239 package_list=[
1240 "chromeos-base/ec-devutils",
1241 ],
1242 force=True,
1243 )
1244
1245 updated_files = uprev_manager.modified_ebuilds
1246 result = uprev_lib.UprevVersionedPackageResult()
1247 result.add_result(refs[0].revision, updated_files)
1248 return result
1249
1250
Jeremy Bettisaf96afb2023-01-11 16:09:58 -07001251@uprevs_versioned_package("chromeos-base/ec-utils")
Jeremy Bettisaf96afb2023-01-11 16:09:58 -07001252def uprev_ecutils(_build_targets, refs, _chroot):
1253 """Updates ec-utils ebuilds to latest revision
1254
1255 ec-utils is not versioned. We are updating to the latest commit on the main
1256 branch.
1257
1258 See: uprev_versioned_package.
1259
1260 Returns:
1261 UprevVersionedPackageResult: The result of updating ec-utils ebuilds.
1262 """
1263 overlay = os.path.join(
1264 constants.SOURCE_ROOT, constants.CHROMIUMOS_OVERLAY_DIR
1265 )
1266 repo_path = os.path.join(constants.SOURCE_ROOT, "src", "platform", "ec")
1267 manifest = git.ManifestCheckout.Cached(repo_path)
1268
1269 uprev_manager = uprev_lib.UprevOverlayManager([overlay], manifest)
1270 uprev_manager.uprev(
1271 package_list=[
Jeremy Bettisaf96afb2023-01-11 16:09:58 -07001272 "chromeos-base/ec-utils",
Jeremy Bettis0186d252023-01-19 14:47:46 -07001273 ],
1274 force=True,
1275 )
1276
1277 updated_files = uprev_manager.modified_ebuilds
1278 result = uprev_lib.UprevVersionedPackageResult()
1279 result.add_result(refs[0].revision, updated_files)
1280 return result
1281
1282
1283@uprevs_versioned_package("chromeos-base/ec-utils-test")
1284def uprev_ecutilstest(_build_targets, refs, _chroot):
1285 """Updates ec-utils-test ebuilds to latest revision
1286
Alex Kleinfee86da2023-01-20 18:40:06 -07001287 ec-utils-test is not versioned. We are updating to the latest commit on the
1288 main branch.
Jeremy Bettis0186d252023-01-19 14:47:46 -07001289
1290 See: uprev_versioned_package.
1291
1292 Returns:
Alex Kleinfee86da2023-01-20 18:40:06 -07001293 UprevVersionedPackageResult: The result of updating ec-utils-test
Trent Aptedb18e36f2023-05-10 15:06:38 +10001294 ebuilds.
Jeremy Bettis0186d252023-01-19 14:47:46 -07001295 """
1296 overlay = os.path.join(
1297 constants.SOURCE_ROOT, constants.CHROMIUMOS_OVERLAY_DIR
1298 )
1299 repo_path = os.path.join(constants.SOURCE_ROOT, "src", "platform", "ec")
1300 manifest = git.ManifestCheckout.Cached(repo_path)
1301
1302 uprev_manager = uprev_lib.UprevOverlayManager([overlay], manifest)
1303 uprev_manager.uprev(
1304 package_list=[
Jeremy Bettisaf96afb2023-01-11 16:09:58 -07001305 "chromeos-base/ec-utils-test",
1306 ],
1307 force=True,
1308 )
1309
1310 updated_files = uprev_manager.modified_ebuilds
1311 result = uprev_lib.UprevVersionedPackageResult()
1312 result.add_result(refs[0].revision, updated_files)
1313 return result
1314
1315
Alex Klein5caab872021-09-10 11:44:37 -06001316def get_best_visible(
Alex Klein1699fab2022-09-08 08:46:06 -06001317 atom: str, build_target: Optional["build_target_lib.BuildTarget"] = None
Alex Klein5caab872021-09-10 11:44:37 -06001318) -> package_info.PackageInfo:
Alex Klein1699fab2022-09-08 08:46:06 -06001319 """Returns the best visible CPV for the given atom.
Alex Kleinbbef2b32019-08-27 10:38:50 -06001320
Alex Klein1699fab2022-09-08 08:46:06 -06001321 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001322 atom: The atom to look up.
1323 build_target: The build target whose sysroot should be searched, or the
1324 SDK if not provided.
Alex Kleinad6b48a2020-01-08 16:57:41 -07001325
Alex Klein1699fab2022-09-08 08:46:06 -06001326 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001327 The best visible package, or None if none are visible.
Alex Klein1699fab2022-09-08 08:46:06 -06001328 """
1329 assert atom
Alex Kleinbbef2b32019-08-27 10:38:50 -06001330
Alex Klein1699fab2022-09-08 08:46:06 -06001331 return portage_util.PortageqBestVisible(
1332 atom,
1333 board=build_target.name if build_target else None,
1334 sysroot=build_target.root if build_target else None,
1335 )
Alex Kleinda39c6d2019-09-16 14:36:36 -06001336
1337
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001338def has_prebuilt(
1339 atom: str,
Alex Klein1699fab2022-09-08 08:46:06 -06001340 build_target: "build_target_lib.BuildTarget" = None,
1341 useflags: Union[Iterable[str], str] = None,
1342) -> bool:
1343 """Check if a prebuilt exists.
Alex Kleinda39c6d2019-09-16 14:36:36 -06001344
Alex Klein1699fab2022-09-08 08:46:06 -06001345 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001346 atom: The package whose prebuilt is being queried.
1347 build_target: The build target whose sysroot should be searched, or the
1348 SDK if not provided.
1349 useflags: Any additional USE flags that should be set. May be a string
1350 of properly formatted USE flags, or an iterable of individual flags.
Alex Kleinad6b48a2020-01-08 16:57:41 -07001351
Alex Klein1699fab2022-09-08 08:46:06 -06001352 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001353 True if there is an available prebuilt, False otherwise.
Alex Klein1699fab2022-09-08 08:46:06 -06001354 """
1355 assert atom
Alex Kleinda39c6d2019-09-16 14:36:36 -06001356
Alex Klein1699fab2022-09-08 08:46:06 -06001357 board = build_target.name if build_target else None
1358 extra_env = None
1359 if useflags:
1360 new_flags = useflags
1361 if not isinstance(useflags, str):
1362 new_flags = " ".join(useflags)
Alex Klein149fd3b2019-12-16 16:01:05 -07001363
Alex Klein1699fab2022-09-08 08:46:06 -06001364 existing = os.environ.get("USE", "")
1365 final_flags = "%s %s" % (existing, new_flags)
1366 extra_env = {"USE": final_flags.strip()}
1367 return portage_util.HasPrebuilt(atom, board=board, extra_env=extra_env)
Alex Klein36b117f2019-09-30 15:13:46 -06001368
1369
David Burger0f9dd4e2019-10-08 12:33:42 -06001370def builds(atom, build_target, packages=None):
Alex Klein1699fab2022-09-08 08:46:06 -06001371 """Check if |build_target| builds |atom| (has it in its depgraph)."""
1372 cros_build_lib.AssertInsideChroot()
Alex Klein36b117f2019-09-30 15:13:46 -06001373
Alex Klein1699fab2022-09-08 08:46:06 -06001374 pkgs = tuple(packages) if packages else None
1375 # TODO(crbug/1081828): Receive and use sysroot.
1376 graph, _sdk_graph = dependency.GetBuildDependency(
1377 build_target.root, build_target.name, pkgs
1378 )
1379 return any(atom in package for package in graph["package_deps"])
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001380
1381
Alex Klein6becabc2020-09-11 14:03:05 -06001382def needs_chrome_source(
Alex Klein1699fab2022-09-08 08:46:06 -06001383 build_target: "build_target_lib.BuildTarget",
Alex Klein6becabc2020-09-11 14:03:05 -06001384 compile_source=False,
1385 packages: Optional[List[package_info.PackageInfo]] = None,
Alex Klein1699fab2022-09-08 08:46:06 -06001386 useflags=None,
1387):
1388 """Check if the chrome source is needed.
Alex Klein6becabc2020-09-11 14:03:05 -06001389
Alex Klein1699fab2022-09-08 08:46:06 -06001390 The chrome source is needed if the build target builds chrome or any of its
1391 follower packages, and can't use a prebuilt for them either because it's not
1392 available, or because we can't use prebuilts because it must build from
1393 source.
1394 """
1395 cros_build_lib.AssertInsideChroot()
Alex Klein6becabc2020-09-11 14:03:05 -06001396
Alex Klein1699fab2022-09-08 08:46:06 -06001397 # Check if it builds chrome and/or a follower package.
1398 graph = depgraph.get_sysroot_dependency_graph(build_target.root, packages)
1399 builds_chrome = constants.CHROME_CP in graph
1400 builds_follower = {
1401 pkg: pkg in graph for pkg in constants.OTHER_CHROME_PACKAGES
1402 }
Alex Klein6becabc2020-09-11 14:03:05 -06001403
Alex Klein1699fab2022-09-08 08:46:06 -06001404 local_uprev = builds_chrome and revbump_chrome([build_target])
Alex Klein9ce3f682021-06-23 15:06:44 -06001405
Alex Kleinfee86da2023-01-20 18:40:06 -07001406 # When we are compiling source set False since we do not use prebuilts. When
1407 # not compiling from source, start with True, i.e. we have every prebuilt
Alex Klein1699fab2022-09-08 08:46:06 -06001408 # we've checked for up to this point.
1409 has_chrome_prebuilt = not compile_source
1410 has_follower_prebuilts = not compile_source
1411 # Save packages that need prebuilts for reporting.
1412 pkgs_needing_prebuilts = []
1413 if compile_source:
1414 # Need everything.
Alex Klein6becabc2020-09-11 14:03:05 -06001415 pkgs_needing_prebuilts.append(constants.CHROME_CP)
Alex Klein1699fab2022-09-08 08:46:06 -06001416 pkgs_needing_prebuilts.extend(
1417 [pkg for pkg, builds_pkg in builds_follower.items() if builds_pkg]
1418 )
1419 else:
1420 # Check chrome itself.
1421 if builds_chrome:
1422 has_chrome_prebuilt = has_prebuilt(
1423 constants.CHROME_CP,
1424 build_target=build_target,
1425 useflags=useflags,
1426 )
1427 if not has_chrome_prebuilt:
1428 pkgs_needing_prebuilts.append(constants.CHROME_CP)
1429 # Check follower packages.
1430 for pkg, builds_pkg in builds_follower.items():
1431 if not builds_pkg:
1432 continue
1433 prebuilt = has_prebuilt(
1434 pkg, build_target=build_target, useflags=useflags
1435 )
1436 has_follower_prebuilts &= prebuilt
1437 if not prebuilt:
1438 pkgs_needing_prebuilts.append(pkg)
Alex Kleinfee86da2023-01-20 18:40:06 -07001439 # Postcondition: has_chrome_prebuilt and has_follower_prebuilts now
1440 # correctly reflect whether we actually have the corresponding prebuilts for
1441 # the build.
Alex Klein6becabc2020-09-11 14:03:05 -06001442
Alex Klein1699fab2022-09-08 08:46:06 -06001443 needs_chrome = builds_chrome and not has_chrome_prebuilt
1444 needs_follower = (
1445 any(builds_follower.values()) and not has_follower_prebuilts
1446 )
Alex Klein6becabc2020-09-11 14:03:05 -06001447
Alex Klein1699fab2022-09-08 08:46:06 -06001448 return NeedsChromeSourceResult(
1449 needs_chrome_source=needs_chrome or needs_follower,
1450 builds_chrome=builds_chrome,
1451 packages=[package_info.parse(p) for p in pkgs_needing_prebuilts],
1452 missing_chrome_prebuilt=not has_chrome_prebuilt,
1453 missing_follower_prebuilt=not has_follower_prebuilts,
1454 local_uprev=local_uprev,
1455 )
Alex Klein6becabc2020-09-11 14:03:05 -06001456
1457
Alex Klein68a28712021-11-08 11:08:30 -07001458class TargetVersions(NamedTuple):
Alex Klein1699fab2022-09-08 08:46:06 -06001459 """Data class for the info that makes up the "target versions"."""
1460
1461 android_version: str
1462 android_branch: str
1463 android_target: str
1464 chrome_version: str
1465 platform_version: str
1466 milestone_version: str
1467 full_version: str
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001468 lacros_version: str
Alex Klein68a28712021-11-08 11:08:30 -07001469
1470
1471def get_target_versions(
Alex Klein1699fab2022-09-08 08:46:06 -06001472 build_target: "build_target_lib.BuildTarget",
1473 packages: List[package_info.PackageInfo] = None,
Alex Klein68a28712021-11-08 11:08:30 -07001474) -> TargetVersions:
Alex Klein1699fab2022-09-08 08:46:06 -06001475 """Aggregate version info for a few key packages and the OS as a whole."""
1476 # Android version.
1477 android_version = determine_android_version(build_target.name)
1478 logging.info("Found android version: %s", android_version)
1479 # Android branch version.
1480 android_branch = determine_android_branch(build_target.name)
1481 logging.info("Found android branch version: %s", android_branch)
1482 # Android target version.
1483 android_target = determine_android_target(build_target.name)
1484 logging.info("Found android target version: %s", android_target)
Alex Klein68a28712021-11-08 11:08:30 -07001485
Alex Klein1699fab2022-09-08 08:46:06 -06001486 # TODO(crbug/1019770): Investigate cases where builds_chrome is true but
1487 # chrome_version is None.
Alex Klein68a28712021-11-08 11:08:30 -07001488
Alex Klein1699fab2022-09-08 08:46:06 -06001489 builds_chrome = builds(constants.CHROME_CP, build_target, packages=packages)
1490 chrome_version = None
1491 if builds_chrome:
1492 # Chrome version fetch.
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001493 chrome_version = determine_package_version(
1494 constants.CHROME_CP, build_target
1495 )
Alex Klein1699fab2022-09-08 08:46:06 -06001496 logging.info("Found chrome version: %s", chrome_version)
Alex Klein68a28712021-11-08 11:08:30 -07001497
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001498 builds_lacros = builds(constants.LACROS_CP, build_target, packages=packages)
1499 lacros_version = None
1500 if builds_lacros:
1501 # LaCrOS version fetch.
1502 lacros_version = determine_package_version(
1503 constants.LACROS_CP, build_target
1504 )
1505 logging.info("Found LaCrOS version: %s", lacros_version)
1506
Alex Klein1699fab2022-09-08 08:46:06 -06001507 # The ChromeOS version info.
1508 platform_version = determine_platform_version()
1509 milestone_version = determine_milestone_version()
1510 full_version = determine_full_version()
Alex Klein68a28712021-11-08 11:08:30 -07001511
Alex Klein1699fab2022-09-08 08:46:06 -06001512 return TargetVersions(
1513 android_version,
1514 android_branch,
1515 android_target,
1516 chrome_version,
1517 platform_version,
1518 milestone_version,
1519 full_version,
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001520 lacros_version,
Alex Klein1699fab2022-09-08 08:46:06 -06001521 )
Alex Klein68a28712021-11-08 11:08:30 -07001522
1523
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001524def determine_package_version(
1525 cpv_name: str,
Alex Klein1699fab2022-09-08 08:46:06 -06001526 build_target: "build_target_lib.BuildTarget",
1527) -> Optional[str]:
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001528 """Returns the current package version for the board (or in buildroot).
Michael Mortensenc2615b72019-10-15 08:12:24 -06001529
Alex Klein1699fab2022-09-08 08:46:06 -06001530 Args:
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001531 cpv_name: the name of the ebuild CPV
Alex Klein348e7692022-10-13 17:03:37 -06001532 build_target: The board build target.
Alex Kleinad6b48a2020-01-08 16:57:41 -07001533
Alex Klein1699fab2022-09-08 08:46:06 -06001534 Returns:
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001535 The version of the package, if available.
Alex Klein1699fab2022-09-08 08:46:06 -06001536 """
1537 # TODO(crbug/1019770): Long term we should not need the try/catch here once
1538 # the builds function above only returns True for chrome when
1539 # determine_chrome_version will succeed.
1540 try:
1541 pkg_info = portage_util.PortageqBestVisible(
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001542 cpv_name, build_target.name, cwd=constants.SOURCE_ROOT
Alex Klein1699fab2022-09-08 08:46:06 -06001543 )
1544 except cros_build_lib.RunCommandError as e:
1545 # Return None because portage failed when trying to determine the chrome
1546 # version.
1547 logging.warning("Caught exception in determine_chrome_package: %s", e)
1548 return None
1549 # Something like 78.0.3877.4_rc -> 78.0.3877.4
1550 return pkg_info.version.partition("_")[0]
Michael Mortensenc2615b72019-10-15 08:12:24 -06001551
1552
Alex Klein68a28712021-11-08 11:08:30 -07001553@functools.lru_cache()
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001554def determine_android_package(board: str) -> Optional[str]:
Alex Klein1699fab2022-09-08 08:46:06 -06001555 """Returns the active Android container package in use by the board.
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001556
Alex Klein1699fab2022-09-08 08:46:06 -06001557 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001558 board: The board name this is specific to.
Alex Kleinad6b48a2020-01-08 16:57:41 -07001559
Alex Klein1699fab2022-09-08 08:46:06 -06001560 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001561 The android package string if there is one.
Alex Klein1699fab2022-09-08 08:46:06 -06001562 """
1563 try:
1564 packages = portage_util.GetPackageDependencies(
1565 "virtual/target-os", board=board
1566 )
1567 except cros_build_lib.RunCommandError as e:
1568 # Return None because a command (likely portage) failed when trying to
1569 # determine the package.
1570 logging.warning("Caught exception in determine_android_package: %s", e)
1571 return None
1572
1573 # We assume there is only one Android package in the depgraph.
1574 for package in packages:
1575 if package.startswith(
1576 "chromeos-base/android-container-"
1577 ) or package.startswith("chromeos-base/android-vm-"):
1578 return package
Michael Mortensene0f4b542019-10-24 15:30:23 -06001579 return None
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001580
1581
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001582def determine_android_version(board: str, package: str = None):
Alex Klein1699fab2022-09-08 08:46:06 -06001583 """Determine the current Android version in buildroot now and return it.
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001584
Alex Klein1699fab2022-09-08 08:46:06 -06001585 This uses the typical portage logic to determine which version of Android
1586 is active right now in the buildroot.
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001587
Alex Klein1699fab2022-09-08 08:46:06 -06001588 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001589 board: The board name this is specific to.
1590 package: The Android package, if already computed.
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001591
Alex Klein1699fab2022-09-08 08:46:06 -06001592 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001593 The Android build ID of the container for the board.
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001594
Alex Klein1699fab2022-09-08 08:46:06 -06001595 Raises:
Alex Klein348e7692022-10-13 17:03:37 -06001596 NoAndroidVersionError: if no unique Android version can be determined.
Alex Klein1699fab2022-09-08 08:46:06 -06001597 """
1598 if not package:
1599 package = determine_android_package(board)
1600 if not package:
1601 return None
Alex Klein7bd88b12023-05-19 15:39:55 -06001602 cpv = package_info.parse(package)
Alex Klein1699fab2022-09-08 08:46:06 -06001603 if not cpv:
1604 raise NoAndroidVersionError(
1605 "Android version could not be determined for %s" % board
1606 )
Alex Klein7bd88b12023-05-19 15:39:55 -06001607 return cpv.version
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001608
Alex Klein7a3a7dd2020-01-08 16:44:38 -07001609
Mike Frysinger8e1c99a2021-03-05 00:58:11 -05001610def determine_android_branch(board, package=None):
Alex Klein1699fab2022-09-08 08:46:06 -06001611 """Returns the Android branch in use by the active container ebuild."""
1612 if not package:
1613 package = determine_android_package(board)
1614 if not package:
1615 return None
1616 ebuild_path = portage_util.FindEbuildForBoardPackage(package, board)
1617 # We assume all targets pull from the same branch and that we always
1618 # have at least one of the following targets.
Shao-Chuan Leeca2cbcc2022-11-02 08:28:31 +09001619 # TODO(b/187795671): Do this in a less hacky way.
1620 targets = android.GetAllAndroidEbuildTargets()
Alex Klein1699fab2022-09-08 08:46:06 -06001621 ebuild_content = osutils.SourceEnvironment(ebuild_path, targets)
1622 for target in targets:
1623 if target in ebuild_content:
1624 branch = re.search(r"(.*?)-linux-", ebuild_content[target])
1625 if branch is not None:
1626 return branch.group(1)
1627 raise NoAndroidBranchError(
1628 "Android branch could not be determined for %s (ebuild empty?)" % board
1629 )
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001630
1631
Mike Frysinger8e1c99a2021-03-05 00:58:11 -05001632def determine_android_target(board, package=None):
Alex Klein1699fab2022-09-08 08:46:06 -06001633 """Returns the Android target in use by the active container ebuild."""
1634 if not package:
1635 package = determine_android_package(board)
1636 if not package:
1637 return None
1638 if package.startswith("chromeos-base/android-vm-"):
1639 return "bertha"
1640 elif package.startswith("chromeos-base/android-container-"):
1641 return "cheets"
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001642
Alex Klein1699fab2022-09-08 08:46:06 -06001643 raise NoAndroidTargetError(
1644 "Android Target cannot be determined for the package: %s" % package
1645 )
Michael Mortensen9fdb14b2019-10-17 11:17:30 -06001646
1647
1648def determine_platform_version():
Alex Klein1699fab2022-09-08 08:46:06 -06001649 """Returns the platform version from the source root."""
1650 # Platform version is something like '12575.0.0'.
1651 version = chromeos_version.VersionInfo.from_repo(constants.SOURCE_ROOT)
1652 return version.VersionString()
Michael Mortensen009cb662019-10-21 11:38:43 -06001653
1654
1655def determine_milestone_version():
Alex Klein1699fab2022-09-08 08:46:06 -06001656 """Returns the platform version from the source root."""
1657 # Milestone version is something like '79'.
1658 version = chromeos_version.VersionInfo.from_repo(constants.SOURCE_ROOT)
1659 return version.chrome_branch
Michael Mortensen009cb662019-10-21 11:38:43 -06001660
Alex Klein7a3a7dd2020-01-08 16:44:38 -07001661
Michael Mortensen009cb662019-10-21 11:38:43 -06001662def determine_full_version():
Alex Klein1699fab2022-09-08 08:46:06 -06001663 """Returns the full version from the source root."""
1664 # Full version is something like 'R79-12575.0.0'.
1665 milestone_version = determine_milestone_version()
1666 platform_version = determine_platform_version()
1667 full_version = "R%s-%s" % (milestone_version, platform_version)
1668 return full_version
Michael Mortensen71ef5682020-05-07 14:29:24 -06001669
1670
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001671def find_fingerprints(
Alex Klein1699fab2022-09-08 08:46:06 -06001672 build_target: "build_target_lib.BuildTarget",
1673) -> List[str]:
1674 """Returns a list of fingerprints for this build.
Michael Mortensende716a12020-05-15 11:27:00 -06001675
Alex Klein1699fab2022-09-08 08:46:06 -06001676 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001677 build_target: The build target.
Michael Mortensende716a12020-05-15 11:27:00 -06001678
Alex Klein1699fab2022-09-08 08:46:06 -06001679 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001680 List of fingerprint strings.
Alex Klein1699fab2022-09-08 08:46:06 -06001681 """
1682 cros_build_lib.AssertInsideChroot()
1683 fp_file = "cheets-fingerprint.txt"
1684 fp_path = os.path.join(
1685 image_lib.GetLatestImageLink(build_target.name), fp_file
1686 )
1687 if not os.path.isfile(fp_path):
1688 logging.info("Fingerprint file not found: %s", fp_path)
1689 return []
1690 logging.info("Reading fingerprint file: %s", fp_path)
1691 fingerprints = osutils.ReadFile(fp_path).splitlines()
1692 return fingerprints
Michael Mortensende716a12020-05-15 11:27:00 -06001693
1694
Alex Klein1699fab2022-09-08 08:46:06 -06001695def get_all_firmware_versions(build_target: "build_target_lib.BuildTarget"):
1696 """Extract firmware version for all models present.
Michael Mortensen59e30872020-05-18 14:12:49 -06001697
Alex Klein1699fab2022-09-08 08:46:06 -06001698 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001699 build_target: The build target.
Michael Mortensen59e30872020-05-18 14:12:49 -06001700
Alex Klein1699fab2022-09-08 08:46:06 -06001701 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001702 A dict of FirmwareVersions namedtuple instances by model.
1703 Each element will be populated based on whether it was present in the
1704 command output.
Alex Klein1699fab2022-09-08 08:46:06 -06001705 """
1706 cros_build_lib.AssertInsideChroot()
1707 result = {}
1708 # Note that example output for _get_firmware_version_cmd_result is available
1709 # in the packages_unittest.py for testing get_all_firmware_versions.
1710 cmd_result = _get_firmware_version_cmd_result(build_target)
Michael Mortensen59e30872020-05-18 14:12:49 -06001711
Alex Klein1699fab2022-09-08 08:46:06 -06001712 if cmd_result:
1713 # There is a blank line between the version info for each model.
1714 firmware_version_payloads = cmd_result.split("\n\n")
1715 for firmware_version_payload in firmware_version_payloads:
1716 if "BIOS" in firmware_version_payload:
1717 firmware_version = _find_firmware_versions(
1718 firmware_version_payload
1719 )
1720 result[firmware_version.model] = firmware_version
1721 return result
Michael Mortensen59e30872020-05-18 14:12:49 -06001722
1723
Benjamin Shai0858cd32022-01-10 20:23:49 +00001724class FirmwareVersions(NamedTuple):
Alex Klein1699fab2022-09-08 08:46:06 -06001725 """Tuple to hold firmware versions, with truthiness."""
Benjamin Shai0858cd32022-01-10 20:23:49 +00001726
Alex Klein1699fab2022-09-08 08:46:06 -06001727 model: Optional[str]
1728 main: Optional[str]
1729 main_rw: Optional[str]
1730 ec: Optional[str]
1731 ec_rw: Optional[str]
1732
1733 def __bool__(self):
1734 return bool(
1735 self.model or self.main or self.main_rw or self.ec or self.ec_rw
1736 )
Michael Mortensen71ef5682020-05-07 14:29:24 -06001737
1738
Alex Klein1699fab2022-09-08 08:46:06 -06001739def get_firmware_versions(build_target: "build_target_lib.BuildTarget"):
1740 """Extract version information from the firmware updater, if one exists.
Michael Mortensen71ef5682020-05-07 14:29:24 -06001741
Alex Klein1699fab2022-09-08 08:46:06 -06001742 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001743 build_target: The build target.
Michael Mortensen71ef5682020-05-07 14:29:24 -06001744
Alex Klein1699fab2022-09-08 08:46:06 -06001745 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001746 A FirmwareVersions namedtuple instance.
1747 Each element will either be set to the string output by the firmware
1748 updater shellball, or None if there is no firmware updater.
Alex Klein1699fab2022-09-08 08:46:06 -06001749 """
1750 cros_build_lib.AssertInsideChroot()
1751 cmd_result = _get_firmware_version_cmd_result(build_target)
1752 if cmd_result:
1753 return _find_firmware_versions(cmd_result)
1754 else:
1755 return FirmwareVersions(None, None, None, None, None)
Michael Mortensen71ef5682020-05-07 14:29:24 -06001756
1757
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001758def _get_firmware_version_cmd_result(
Alex Klein1699fab2022-09-08 08:46:06 -06001759 build_target: "build_target_lib.BuildTarget",
1760) -> Optional[str]:
1761 """Gets the raw result output of the firmware updater version command.
Michael Mortensen71ef5682020-05-07 14:29:24 -06001762
Alex Klein1699fab2022-09-08 08:46:06 -06001763 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001764 build_target: The build target.
Michael Mortensen71ef5682020-05-07 14:29:24 -06001765
Alex Klein1699fab2022-09-08 08:46:06 -06001766 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001767 Command execution result.
Alex Klein1699fab2022-09-08 08:46:06 -06001768 """
1769 updater = os.path.join(
1770 build_target.root, "usr/sbin/chromeos-firmwareupdate"
1771 )
1772 logging.info("Calling updater %s", updater)
1773 # Call the updater using the chroot-based path.
1774 try:
1775 return cros_build_lib.run(
1776 [updater, "-V"],
1777 capture_output=True,
1778 log_output=True,
1779 encoding="utf-8",
1780 ).stdout
1781 except cros_build_lib.RunCommandError:
1782 # Updater probably doesn't exist (e.g. betty).
1783 return None
Michael Mortensen71ef5682020-05-07 14:29:24 -06001784
1785
1786def _find_firmware_versions(cmd_output):
Alex Klein1699fab2022-09-08 08:46:06 -06001787 """Finds firmware version output via regex matches against the cmd_output.
Michael Mortensen71ef5682020-05-07 14:29:24 -06001788
Alex Klein1699fab2022-09-08 08:46:06 -06001789 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001790 cmd_output: The raw output to search against.
Michael Mortensen71ef5682020-05-07 14:29:24 -06001791
Alex Klein1699fab2022-09-08 08:46:06 -06001792 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001793 FirmwareVersions namedtuple with results.
1794 Each element will either be set to the string output by the firmware
1795 updater shellball, or None if there is no match.
Alex Klein1699fab2022-09-08 08:46:06 -06001796 """
Michael Mortensen71ef5682020-05-07 14:29:24 -06001797
Alex Klein1699fab2022-09-08 08:46:06 -06001798 # Sometimes a firmware bundle includes a special combination of RO+RW
1799 # firmware. In this case, the RW firmware version is indicated with a "(RW)
1800 # version" field. In other cases, the "(RW) version" field is not present.
1801 # Therefore, search for the "(RW)" fields first and if they aren't present,
1802 # fallback to the other format. e.g. just "BIOS version:".
1803 # TODO(mmortensen): Use JSON once the firmware updater supports it.
1804 main = None
1805 main_rw = None
1806 ec = None
1807 ec_rw = None
1808 model = None
Michael Mortensen71ef5682020-05-07 14:29:24 -06001809
Alex Klein1699fab2022-09-08 08:46:06 -06001810 match = re.search(r"BIOS version:\s*(?P<version>.*)", cmd_output)
1811 if match:
1812 main = match.group("version")
Michael Mortensen71ef5682020-05-07 14:29:24 -06001813
Alex Klein1699fab2022-09-08 08:46:06 -06001814 match = re.search(r"BIOS \(RW\) version:\s*(?P<version>.*)", cmd_output)
1815 if match:
1816 main_rw = match.group("version")
Michael Mortensen71ef5682020-05-07 14:29:24 -06001817
Alex Klein1699fab2022-09-08 08:46:06 -06001818 match = re.search(r"EC version:\s*(?P<version>.*)", cmd_output)
1819 if match:
1820 ec = match.group("version")
Michael Mortensen71ef5682020-05-07 14:29:24 -06001821
Alex Klein1699fab2022-09-08 08:46:06 -06001822 match = re.search(r"EC \(RW\) version:\s*(?P<version>.*)", cmd_output)
1823 if match:
1824 ec_rw = match.group("version")
Michael Mortensen71ef5682020-05-07 14:29:24 -06001825
Alex Klein1699fab2022-09-08 08:46:06 -06001826 match = re.search(r"Model:\s*(?P<model>.*)", cmd_output)
1827 if match:
1828 model = match.group("model")
Michael Mortensen71ef5682020-05-07 14:29:24 -06001829
Alex Klein1699fab2022-09-08 08:46:06 -06001830 return FirmwareVersions(model, main, main_rw, ec, ec_rw)
Michael Mortensena4af79e2020-05-06 16:18:48 -06001831
1832
Benjamin Shai0858cd32022-01-10 20:23:49 +00001833class MainEcFirmwareVersions(NamedTuple):
Alex Klein1699fab2022-09-08 08:46:06 -06001834 """Tuple to hold main and ec firmware versions, with truthiness."""
Benjamin Shai0858cd32022-01-10 20:23:49 +00001835
Alex Klein1699fab2022-09-08 08:46:06 -06001836 main_fw_version: Optional[str]
1837 ec_fw_version: Optional[str]
1838
1839 def __bool__(self):
1840 return bool(self.main_fw_version or self.ec_fw_version)
Benjamin Shai0858cd32022-01-10 20:23:49 +00001841
Michael Mortensena4af79e2020-05-06 16:18:48 -06001842
Alex Klein1699fab2022-09-08 08:46:06 -06001843def determine_firmware_versions(build_target: "build_target_lib.BuildTarget"):
1844 """Returns a namedtuple with main and ec firmware versions.
Michael Mortensena4af79e2020-05-06 16:18:48 -06001845
Alex Klein1699fab2022-09-08 08:46:06 -06001846 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001847 build_target: The build target.
Michael Mortensena4af79e2020-05-06 16:18:48 -06001848
Alex Klein1699fab2022-09-08 08:46:06 -06001849 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001850 MainEcFirmwareVersions namedtuple with results.
Alex Klein1699fab2022-09-08 08:46:06 -06001851 """
1852 fw_versions = get_firmware_versions(build_target)
1853 main_fw_version = fw_versions.main_rw or fw_versions.main
1854 ec_fw_version = fw_versions.ec_rw or fw_versions.ec
Michael Mortensena4af79e2020-05-06 16:18:48 -06001855
Alex Klein1699fab2022-09-08 08:46:06 -06001856 return MainEcFirmwareVersions(main_fw_version, ec_fw_version)
Michael Mortensenfbf2b2d2020-05-14 16:33:06 -06001857
Benjamin Shai0858cd32022-01-10 20:23:49 +00001858
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001859def determine_kernel_version(
Alex Klein1699fab2022-09-08 08:46:06 -06001860 build_target: "build_target_lib.BuildTarget",
Lizzy Presland0b978e62022-09-09 16:55:29 +00001861) -> str:
Alex Klein1699fab2022-09-08 08:46:06 -06001862 """Returns a string containing the kernel version for this build target.
Michael Mortensenfbf2b2d2020-05-14 16:33:06 -06001863
Alex Klein1699fab2022-09-08 08:46:06 -06001864 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001865 build_target: The build target.
Michael Mortensenfbf2b2d2020-05-14 16:33:06 -06001866
Alex Klein1699fab2022-09-08 08:46:06 -06001867 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001868 The kernel versions, or empty string.
Alex Klein1699fab2022-09-08 08:46:06 -06001869 """
Lizzy Presland0b978e62022-09-09 16:55:29 +00001870 target_virtual_pkg = "virtual/linux-sources"
Alex Klein1699fab2022-09-08 08:46:06 -06001871 try:
Lizzy Presland0b978e62022-09-09 16:55:29 +00001872 candidate_packages = portage_util.GetFlattenedDepsForPackage(
1873 target_virtual_pkg,
1874 sysroot=build_target.root,
1875 board=build_target.name,
1876 depth=1,
1877 )
1878 installed_packages = portage_util.GetPackageDependencies(
1879 target_virtual_pkg, board=build_target.name
Alex Klein1699fab2022-09-08 08:46:06 -06001880 )
1881 except cros_build_lib.RunCommandError as e:
1882 logging.warning("Unable to get package list for metadata: %s", e)
Lizzy Presland0b978e62022-09-09 16:55:29 +00001883 return ""
1884 if not candidate_packages:
1885 raise KernelVersionError("No package found in FlattenedDepsForPackage")
1886 if not installed_packages:
1887 raise KernelVersionError("No package found in GetPackageDependencies")
1888 packages = [
1889 p
1890 for p in installed_packages
1891 if p in candidate_packages and target_virtual_pkg not in p
1892 ]
1893 if len(packages) == 0:
1894 raise KernelVersionError(
1895 "No matches for installed packages were found in candidate "
1896 "packages. Did GetFlattenedDepsForPackage search all possible "
1897 "package versions?\tInstalled: %s\tCandidates: %s"
1898 % (" ".join(installed_packages), " ".join(candidate_packages))
1899 )
1900 if len(packages) > 1:
1901 raise KernelVersionError(
1902 "Too many packages found in intersection of installed packages and "
1903 "possible kernel versions (%s)" % "".join(packages)
1904 )
1905 kernel_version = package_info.SplitCPV(packages[0]).version
1906 logging.info("Found active kernel version: %s", kernel_version)
1907 return kernel_version
Michael Mortensen125bb012020-05-21 14:02:10 -06001908
1909
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001910def get_models(
Alex Klein1699fab2022-09-08 08:46:06 -06001911 build_target: "build_target_lib.BuildTarget", log_output: bool = True
1912) -> Optional[List[str]]:
1913 """Obtain a list of models supported by a unified board.
Michael Mortensen125bb012020-05-21 14:02:10 -06001914
Alex Klein1699fab2022-09-08 08:46:06 -06001915 This ignored whitelabel models since GoldenEye has no specific support for
1916 these at present.
Michael Mortensen125bb012020-05-21 14:02:10 -06001917
Alex Klein1699fab2022-09-08 08:46:06 -06001918 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001919 build_target: The build target.
1920 log_output: Whether to log the output of the cros_config_host
1921 invocation.
Michael Mortensen125bb012020-05-21 14:02:10 -06001922
Alex Klein1699fab2022-09-08 08:46:06 -06001923 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001924 A list of models supported by this board, if it is a unified build;
1925 None, if it is not a unified build.
Alex Klein1699fab2022-09-08 08:46:06 -06001926 """
1927 return _run_cros_config_host(
1928 build_target, ["list-models"], log_output=log_output
1929 )
Michael Mortensen125bb012020-05-21 14:02:10 -06001930
1931
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001932def get_key_id(
Alex Klein1699fab2022-09-08 08:46:06 -06001933 build_target: "build_target_lib.BuildTarget", model: str
1934) -> Optional[str]:
1935 """Obtain the key_id for a model within the build_target.
Michael Mortensen359c1f32020-05-28 19:35:42 -06001936
Alex Klein1699fab2022-09-08 08:46:06 -06001937 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001938 build_target: The build target.
1939 model: The model name
Michael Mortensen359c1f32020-05-28 19:35:42 -06001940
Alex Klein1699fab2022-09-08 08:46:06 -06001941 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001942 A key_id or None.
Alex Klein1699fab2022-09-08 08:46:06 -06001943 """
1944 model_arg = "--model=" + model
1945 key_id_list = _run_cros_config_host(
1946 build_target, [model_arg, "get", "/firmware-signing", "key-id"]
1947 )
1948 key_id = None
1949 if len(key_id_list) == 1:
1950 key_id = key_id_list[0]
1951 return key_id
Michael Mortensen359c1f32020-05-28 19:35:42 -06001952
1953
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001954def _run_cros_config_host(
Alex Klein1699fab2022-09-08 08:46:06 -06001955 build_target: "build_target_lib.BuildTarget",
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001956 args: List[str],
Alex Klein1699fab2022-09-08 08:46:06 -06001957 log_output: bool = True,
1958) -> Optional[List[str]]:
1959 """Run the cros_config_host tool.
Michael Mortensen125bb012020-05-21 14:02:10 -06001960
Alex Klein1699fab2022-09-08 08:46:06 -06001961 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001962 build_target: The build target.
1963 args: List of arguments to pass.
1964 log_output: Whether to log the output of the cros_config_host.
Michael Mortensen125bb012020-05-21 14:02:10 -06001965
Alex Klein1699fab2022-09-08 08:46:06 -06001966 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001967 Output of the tool
Alex Klein1699fab2022-09-08 08:46:06 -06001968 """
1969 cros_build_lib.AssertInsideChroot()
1970 tool = "/usr/bin/cros_config_host"
1971 if not os.path.isfile(tool):
1972 return None
Michael Mortensen125bb012020-05-21 14:02:10 -06001973
Alex Klein1699fab2022-09-08 08:46:06 -06001974 config_fname = build_target.full_path(
1975 "usr/share/chromeos-config/yaml/config.yaml"
1976 )
Michael Mortensen125bb012020-05-21 14:02:10 -06001977
Alex Klein1699fab2022-09-08 08:46:06 -06001978 result = cros_build_lib.run(
1979 [tool, "-c", config_fname] + args,
1980 capture_output=True,
1981 encoding="utf-8",
1982 log_output=log_output,
1983 check=False,
1984 )
1985 if result.returncode:
1986 # Show the output for debugging purposes.
1987 if "No such file or directory" not in result.stderr:
1988 logging.error("cros_config_host failed: %s\n", result.stderr)
1989 return None
1990 return result.stdout.strip().splitlines()