blob: c193accf520eb89762a938994a3a14de849804a2 [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 = (
Timothy Loh0cdf15d2023-06-19 17:54:22 +1000778 "src/platform/tast-tests-private/"
Dmitry Torokhov257eba12023-05-30 13:42:48 -0700779 "src/go.chromium.org/tast-tests-private/crosint/"
Alex Klein1699fab2022-09-08 08:46:06 -0600780 "local/bundles/crosint/pita/data/"
781 "pluginvm_image.zip.external"
782 )
783 test_image_src_path = os.path.join(constants.SOURCE_ROOT, test_image_path)
Mike Frysinger81a98062023-02-24 15:42:04 -0500784 with open(test_image_src_path, "w", encoding="utf-8") as f:
Alex Klein1699fab2022-09-08 08:46:06 -0600785 json.dump(pinned["test_image"], f, indent=2)
786 result.add_result(version, [test_image_src_path])
Patrick Meiring5897add2020-09-16 16:30:17 +1000787
Alex Klein1699fab2022-09-08 08:46:06 -0600788 return result
Trent Beginaf51f1b2020-03-09 17:35:31 -0600789
790
Alex Klein1699fab2022-09-08 08:46:06 -0600791@uprevs_versioned_package("chromeos-base/chromeos-dtc-vm")
Trent Beginaf51f1b2020-03-09 17:35:31 -0600792def uprev_sludge(_build_targets, _refs, chroot):
Alex Klein1699fab2022-09-08 08:46:06 -0600793 """Updates sludge VM - chromeos-base/chromeos-dtc-vm.
Trent Begin315d9d92019-12-03 21:55:53 -0700794
Alex Klein1699fab2022-09-08 08:46:06 -0600795 See: uprev_versioned_package.
796 """
797 package = "chromeos-dtc-vm"
798 package_path = os.path.join(
799 "src",
800 "private-overlays",
801 "project-wilco-private",
802 "chromeos-base",
803 package,
804 )
805 version_pin_src_path = _get_version_pin_src_path(package_path)
806 version_no_rev = osutils.ReadFile(version_pin_src_path).strip()
Trent Begin315d9d92019-12-03 21:55:53 -0700807
Alex Klein1699fab2022-09-08 08:46:06 -0600808 return uprev_lib.uprev_ebuild_from_pin(package_path, version_no_rev, chroot)
Trent Begin315d9d92019-12-03 21:55:53 -0700809
810
Alex Klein1699fab2022-09-08 08:46:06 -0600811@uprevs_versioned_package("chromeos-base/borealis-dlc")
David Riley8513c1f2021-10-14 17:07:41 -0700812def uprev_borealis_dlc(_build_targets, _refs, chroot):
Alex Klein1699fab2022-09-08 08:46:06 -0600813 """Updates shared borealis-dlc ebuild - chromeos-base/borealis-dlc.
David Riley8513c1f2021-10-14 17:07:41 -0700814
Alex Klein1699fab2022-09-08 08:46:06 -0600815 See: uprev_versioned_package.
816 """
817 package_path = os.path.join(
818 "src",
819 "private-overlays",
820 "chromeos-partner-overlay",
821 "chromeos-base",
822 "borealis-dlc",
823 )
David Riley8513c1f2021-10-14 17:07:41 -0700824
Alex Klein1699fab2022-09-08 08:46:06 -0600825 version_pin_src_path = _get_version_pin_src_path(package_path)
826 version_no_rev = osutils.ReadFile(version_pin_src_path).strip()
David Riley8513c1f2021-10-14 17:07:41 -0700827
Alex Klein1699fab2022-09-08 08:46:06 -0600828 return uprev_lib.uprev_ebuild_from_pin(package_path, version_no_rev, chroot)
David Riley8513c1f2021-10-14 17:07:41 -0700829
830
Po-Hsien Wang92fb1e52023-04-27 11:35:04 -0700831@uprevs_versioned_package("chromeos-base/borealis-dlc-nvidia")
832def uprev_borealis_dlc_nvidia(_build_targets, _refs, chroot):
Trent Apted380d1c62023-05-16 09:19:31 +1000833 """Updates shared chromeos-base/borealis-dlc-nvidia ebuild.
Po-Hsien Wang92fb1e52023-04-27 11:35:04 -0700834
835 See: uprev_versioned_package.
836 """
837 package_path = os.path.join(
838 "src",
839 "private-overlays",
840 "chromeos-partner-overlay",
841 "chromeos-base",
842 "borealis-dlc-nvidia",
843 )
844
845 version_pin_src_path = _get_version_pin_src_path(package_path)
846 version_no_rev = osutils.ReadFile(version_pin_src_path).strip()
847
848 return uprev_lib.uprev_ebuild_from_pin(package_path, version_no_rev, chroot)
849
850
Syed Faaiz Hussainef29cf82023-06-06 22:14:07 -0700851@uprevs_versioned_package("chromeos-base/borealis-dlc-chroot")
852def uprev_borealis_dlc_chroot(_build_targets, _refs, chroot):
Sergey Frolov8eb38c12023-06-21 19:17:17 -0600853 """Updates shared chromeos-base/borealis-dlc-chroot ebuild.
Syed Faaiz Hussainef29cf82023-06-06 22:14:07 -0700854
855 See: uprev_versioned_package.
856 """
857 package_path = os.path.join(
858 "src",
859 "private-overlays",
860 "chromeos-partner-overlay",
861 "chromeos-base",
862 "borealis-dlc-chroot",
863 )
864
865 version_pin_src_path = _get_version_pin_src_path(package_path)
866 version_no_rev = osutils.ReadFile(version_pin_src_path).strip()
867
868 return uprev_lib.uprev_ebuild_from_pin(package_path, version_no_rev, chroot)
869
870
Patrick Meiring5897add2020-09-16 16:30:17 +1000871def _get_version_pin_src_path(package_path):
Alex Klein1699fab2022-09-08 08:46:06 -0600872 """Returns the path to the VERSION-PIN file for the given package."""
873 return os.path.join(constants.SOURCE_ROOT, package_path, "VERSION-PIN")
Patrick Meiring5897add2020-09-16 16:30:17 +1000874
875
Alex Klein87531182019-08-12 15:23:37 -0600876@uprevs_versioned_package(constants.CHROME_CP)
Alex Klein4e839252022-01-06 13:29:18 -0700877def uprev_chrome_from_ref(build_targets, refs, _chroot):
Alex Klein1699fab2022-09-08 08:46:06 -0600878 """Uprev chrome and its related packages.
Alex Klein87531182019-08-12 15:23:37 -0600879
Alex Klein1699fab2022-09-08 08:46:06 -0600880 See: uprev_versioned_package.
881 """
Alex Kleinfee86da2023-01-20 18:40:06 -0700882 # Determine the version from the refs (tags), i.e. the chrome versions are
883 # the tag names.
Alex Klein1699fab2022-09-08 08:46:06 -0600884 chrome_version = uprev_lib.get_version_from_refs(refs)
885 logging.debug("Chrome version determined from refs: %s", chrome_version)
Alex Klein87531182019-08-12 15:23:37 -0600886
Alex Klein1699fab2022-09-08 08:46:06 -0600887 return uprev_chrome(chrome_version, build_targets, None)
Alex Kleinf69bd802021-06-22 15:43:49 -0600888
889
Alex Klein9ce3f682021-06-23 15:06:44 -0600890def revbump_chrome(
Alex Klein1699fab2022-09-08 08:46:06 -0600891 build_targets: List["build_target_lib.BuildTarget"] = None,
892 chroot: Optional["chroot_lib.Chroot"] = None,
Alex Klein9ce3f682021-06-23 15:06:44 -0600893) -> uprev_lib.UprevVersionedPackageResult:
Alex Klein1699fab2022-09-08 08:46:06 -0600894 """Attempt to revbump chrome.
Alex Kleinf69bd802021-06-22 15:43:49 -0600895
Alex Klein1699fab2022-09-08 08:46:06 -0600896 Revbumps are done by executing an uprev using the current stable version.
897 E.g. if chrome is on 1.2.3.4 and has a 1.2.3.4_rc-r2.ebuild, performing an
898 uprev on version 1.2.3.4 when there are applicable changes (e.g. to the 9999
899 ebuild) will result in a revbump to 1.2.3.4_rc-r3.ebuild.
900 """
901 chrome_version = uprev_lib.get_stable_chrome_version()
902 return uprev_chrome(chrome_version, build_targets, chroot)
Alex Kleinf69bd802021-06-22 15:43:49 -0600903
904
Alex Klein9ce3f682021-06-23 15:06:44 -0600905def uprev_chrome(
Alex Klein16ea1b32021-10-01 15:48:50 -0600906 chrome_version: str,
Alex Klein1699fab2022-09-08 08:46:06 -0600907 build_targets: Optional[List["build_target_lib.BuildTarget"]],
908 chroot: Optional["chroot_lib.Chroot"],
Alex Klein9ce3f682021-06-23 15:06:44 -0600909) -> uprev_lib.UprevVersionedPackageResult:
Alex Klein1699fab2022-09-08 08:46:06 -0600910 """Attempt to uprev chrome and its related packages to the given version."""
911 uprev_manager = uprev_lib.UprevChromeManager(
912 chrome_version, build_targets=build_targets, chroot=chroot
913 )
914 result = uprev_lib.UprevVersionedPackageResult()
915 # TODO(crbug.com/1080429): Handle all possible outcomes of a Chrome uprev
916 # attempt. The expected behavior is documented in the following table:
917 #
918 # Outcome of Chrome uprev attempt:
919 # NEWER_VERSION_EXISTS:
920 # Do nothing.
921 # SAME_VERSION_EXISTS or REVISION_BUMP:
922 # Uprev followers
923 # Assert not VERSION_BUMP (any other outcome is fine)
924 # VERSION_BUMP or NEW_EBUILD_CREATED:
925 # Uprev followers
926 # Assert that Chrome & followers are at same package version
Alex Klein0b2ec2d2021-06-23 15:56:45 -0600927
Alex Klein1699fab2022-09-08 08:46:06 -0600928 # Start with chrome itself so we can proceed accordingly.
929 chrome_result = uprev_manager.uprev(constants.CHROME_CP)
930 if chrome_result.newer_version_exists:
931 # Cannot use the given version (newer version already exists).
932 return result
933
934 # Also uprev related packages.
935 for package in constants.OTHER_CHROME_PACKAGES:
936 follower_result = uprev_manager.uprev(package)
937 if chrome_result.stable_version and follower_result.version_bump:
938 logging.warning(
939 "%s had a version bump, but no more than a revision bump "
940 "should have been possible.",
941 package,
942 )
943
944 if uprev_manager.modified_ebuilds:
945 # Record changes when we have them.
946 return result.add_result(chrome_version, uprev_manager.modified_ebuilds)
947
David Burger37f48672019-09-18 17:07:56 -0600948 return result
Alex Klein87531182019-08-12 15:23:37 -0600949
Alex Klein87531182019-08-12 15:23:37 -0600950
Alex Klein1699fab2022-09-08 08:46:06 -0600951def _get_latest_version_from_refs(
952 refs_prefix: str, refs: List[uprev_lib.GitRef]
953) -> str:
954 """Get the latest version from refs
Alex Klein0b2ec2d2021-06-23 15:56:45 -0600955
Alex Klein1699fab2022-09-08 08:46:06 -0600956 Versions are compared using |distutils.version.LooseVersion| and
957 the latest version is returned.
Alex Klein87531182019-08-12 15:23:37 -0600958
Alex Klein1699fab2022-09-08 08:46:06 -0600959 Args:
Alex Klein348e7692022-10-13 17:03:37 -0600960 refs_prefix: The refs prefix of the tag format.
961 refs: The tags to parse for the latest version.
Alex Klein87531182019-08-12 15:23:37 -0600962
Alex Klein1699fab2022-09-08 08:46:06 -0600963 Returns:
Alex Klein348e7692022-10-13 17:03:37 -0600964 The latest version to use as string.
Alex Klein1699fab2022-09-08 08:46:06 -0600965 """
966 valid_refs = []
967 for gitiles in refs:
968 if gitiles.ref.startswith(refs_prefix):
969 valid_refs.append(gitiles.ref)
Ben Reiche779cf42020-12-15 03:21:31 +0000970
Alex Klein1699fab2022-09-08 08:46:06 -0600971 if not valid_refs:
972 return None
Ben Reiche779cf42020-12-15 03:21:31 +0000973
Alex Klein1699fab2022-09-08 08:46:06 -0600974 # Sort by version and take the latest version.
975 target_version_ref = sorted(valid_refs, key=LooseVersion, reverse=True)[0]
976 return target_version_ref.replace(refs_prefix, "")
Harvey Yang9c61e9c2021-03-02 16:32:43 +0800977
978
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -0700979def _generate_platform_c_files(
980 replication_config: replication_config_pb2.ReplicationConfig,
Alex Klein1699fab2022-09-08 08:46:06 -0600981 chroot: "chroot_lib.Chroot",
982) -> List[str]:
983 """Generates platform C files from a platform JSON payload.
Andrew Lamb9563a152019-12-04 11:42:18 -0700984
Alex Klein1699fab2022-09-08 08:46:06 -0600985 Args:
Alex Klein348e7692022-10-13 17:03:37 -0600986 replication_config: A ReplicationConfig that has already been run. If it
987 produced a build_config.json file, that file will be used to
988 generate platform C files. Otherwise, nothing will be generated.
989 chroot: The chroot to use to generate.
Andrew Lamb9563a152019-12-04 11:42:18 -0700990
Alex Klein1699fab2022-09-08 08:46:06 -0600991 Returns:
Alex Klein348e7692022-10-13 17:03:37 -0600992 A list of generated files.
Alex Klein1699fab2022-09-08 08:46:06 -0600993 """
994 # Generate the platform C files from the build config. Note that it would be
995 # more intuitive to generate the platform C files from the platform config;
Alex Kleinfee86da2023-01-20 18:40:06 -0700996 # however, cros_config_schema does not allow this, because the platform
997 # config payload is not always valid input. For example, if a property is
998 # both 'required' and 'build-only', it will fail schema validation. Thus,
999 # use the build config, and use '-f' to filter.
Alex Klein1699fab2022-09-08 08:46:06 -06001000 build_config_path = [
1001 rule.destination_path
1002 for rule in replication_config.file_replication_rules
1003 if rule.destination_path.endswith("build_config.json")
1004 ]
Andrew Lamb9563a152019-12-04 11:42:18 -07001005
Alex Klein1699fab2022-09-08 08:46:06 -06001006 if not build_config_path:
1007 logging.info(
1008 "No build_config.json found, will not generate platform C files. "
1009 "Replication config: %s",
1010 replication_config,
1011 )
1012 return []
Andrew Lamb9563a152019-12-04 11:42:18 -07001013
Alex Klein1699fab2022-09-08 08:46:06 -06001014 if len(build_config_path) > 1:
1015 raise ValueError(
1016 "Expected at most one build_config.json destination path. "
1017 "Replication config: %s" % replication_config
1018 )
Andrew Lamb9563a152019-12-04 11:42:18 -07001019
Alex Klein1699fab2022-09-08 08:46:06 -06001020 build_config_path = build_config_path[0]
Andrew Lamb9563a152019-12-04 11:42:18 -07001021
Alex Klein1699fab2022-09-08 08:46:06 -06001022 # Paths to the build_config.json and dir to output C files to, in the
1023 # chroot.
1024 build_config_chroot_path = os.path.join(
1025 constants.CHROOT_SOURCE_ROOT, build_config_path
1026 )
1027 generated_output_chroot_dir = os.path.join(
1028 constants.CHROOT_SOURCE_ROOT, os.path.dirname(build_config_path)
1029 )
Andrew Lamb9563a152019-12-04 11:42:18 -07001030
Alex Klein1699fab2022-09-08 08:46:06 -06001031 command = [
1032 "cros_config_schema",
1033 "-m",
1034 build_config_chroot_path,
1035 "-g",
1036 generated_output_chroot_dir,
1037 "-f",
1038 '"TRUE"',
1039 ]
Andrew Lamb9563a152019-12-04 11:42:18 -07001040
Alex Klein1699fab2022-09-08 08:46:06 -06001041 cros_build_lib.run(
1042 command, enter_chroot=True, chroot_args=chroot.get_enter_args()
1043 )
Andrew Lamb9563a152019-12-04 11:42:18 -07001044
Alex Klein1699fab2022-09-08 08:46:06 -06001045 # A relative (to the source root) path to the generated C files.
1046 generated_output_dir = os.path.dirname(build_config_path)
1047 generated_files = []
1048 expected_c_files = ["config.c", "ec_config.c", "ec_config.h"]
1049 for f in expected_c_files:
1050 if os.path.exists(
1051 os.path.join(constants.SOURCE_ROOT, generated_output_dir, f)
1052 ):
1053 generated_files.append(os.path.join(generated_output_dir, f))
Andrew Lamb9563a152019-12-04 11:42:18 -07001054
Alex Klein1699fab2022-09-08 08:46:06 -06001055 if len(expected_c_files) != len(generated_files):
1056 raise GeneratedCrosConfigFilesError(expected_c_files, generated_files)
Andrew Lamb9563a152019-12-04 11:42:18 -07001057
Alex Klein1699fab2022-09-08 08:46:06 -06001058 return generated_files
Andrew Lamb9563a152019-12-04 11:42:18 -07001059
1060
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001061def _get_private_overlay_package_root(ref: uprev_lib.GitRef, package: str):
Alex Klein1699fab2022-09-08 08:46:06 -06001062 """Returns the absolute path to the root of a given private overlay.
Andrew Lambe836f222019-12-09 12:27:38 -07001063
Alex Klein1699fab2022-09-08 08:46:06 -06001064 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001065 ref: GitRef for the private overlay.
1066 package: Path to the package in the overlay.
Alex Klein1699fab2022-09-08 08:46:06 -06001067 """
1068 # There might be a cleaner way to map from package -> path within the source
1069 # tree. For now, just use string patterns.
1070 private_overlay_ref_pattern = (
1071 r"/chromeos\/overlays\/overlay-([\w-]+)-private"
1072 )
1073 match = re.match(private_overlay_ref_pattern, ref.path)
1074 if not match:
1075 raise ValueError(
1076 "ref.path must match the pattern: %s. Actual ref: %s"
1077 % (private_overlay_ref_pattern, ref)
1078 )
Andrew Lambe836f222019-12-09 12:27:38 -07001079
Alex Klein1699fab2022-09-08 08:46:06 -06001080 overlay = match.group(1)
Andrew Lambe836f222019-12-09 12:27:38 -07001081
Alex Klein1699fab2022-09-08 08:46:06 -06001082 return os.path.join(
1083 constants.SOURCE_ROOT,
1084 "src/private-overlays/overlay-%s-private" % overlay,
1085 package,
1086 )
Andrew Lambe836f222019-12-09 12:27:38 -07001087
1088
Alex Klein1699fab2022-09-08 08:46:06 -06001089@uprevs_versioned_package("chromeos-base/chromeos-config-bsp")
Andrew Lambea9a8a22019-12-12 14:03:43 -07001090def replicate_private_config(_build_targets, refs, chroot):
Alex Kleinfee86da2023-01-20 18:40:06 -07001091 """Replicate private cros_config change to the corresponding public config.
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001092
Alex Klein1699fab2022-09-08 08:46:06 -06001093 See uprev_versioned_package for args
1094 """
1095 package = "chromeos-base/chromeos-config-bsp"
Andrew Lambea9a8a22019-12-12 14:03:43 -07001096
Alex Klein1699fab2022-09-08 08:46:06 -06001097 if len(refs) != 1:
1098 raise ValueError("Expected exactly one ref, actual %s" % refs)
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001099
Alex Klein1699fab2022-09-08 08:46:06 -06001100 # Expect a replication_config.jsonpb in the package root.
1101 package_root = _get_private_overlay_package_root(refs[0], package)
1102 replication_config_path = os.path.join(
1103 package_root, "replication_config.jsonpb"
1104 )
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001105
Alex Klein1699fab2022-09-08 08:46:06 -06001106 try:
1107 replication_config = json_format.Parse(
1108 osutils.ReadFile(replication_config_path),
1109 replication_config_pb2.ReplicationConfig(),
1110 )
1111 except IOError:
1112 raise ValueError(
1113 "Expected ReplicationConfig missing at %s" % replication_config_path
1114 )
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001115
Alex Klein1699fab2022-09-08 08:46:06 -06001116 replication_lib.Replicate(replication_config)
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001117
Alex Klein1699fab2022-09-08 08:46:06 -06001118 modified_files = [
1119 rule.destination_path
1120 for rule in replication_config.file_replication_rules
1121 ]
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001122
Alex Kleinfee86da2023-01-20 18:40:06 -07001123 # The generated platform C files are not easily filtered by replication
1124 # rules, i.e. JSON / proto filtering can be described by a FieldMask,
1125 # arbitrary C files cannot. Therefore, replicate and filter the JSON
1126 # payloads, and then generate filtered C files from the JSON payload.
Alex Klein1699fab2022-09-08 08:46:06 -06001127 modified_files.extend(
1128 _generate_platform_c_files(replication_config, chroot)
1129 )
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001130
Alex Klein1699fab2022-09-08 08:46:06 -06001131 # Use the private repo's commit hash as the new version.
1132 new_private_version = refs[0].revision
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001133
Alex Klein1699fab2022-09-08 08:46:06 -06001134 # modified_files should contain only relative paths at this point, but the
1135 # returned UprevVersionedPackageResult must contain only absolute paths.
1136 for i, modified_file in enumerate(modified_files):
1137 assert not os.path.isabs(modified_file)
1138 modified_files[i] = os.path.join(constants.SOURCE_ROOT, modified_file)
Andrew Lamb988f4da2019-12-10 10:16:43 -07001139
Alex Klein1699fab2022-09-08 08:46:06 -06001140 return uprev_lib.UprevVersionedPackageResult().add_result(
1141 new_private_version, modified_files
1142 )
Andrew Lamb2bde9e42019-11-04 13:24:09 -07001143
1144
Alex Klein1699fab2022-09-08 08:46:06 -06001145@uprevs_versioned_package("chromeos-base/crosvm")
Dennis Kempinef05f2b2021-09-08 16:36:49 -07001146def uprev_crosvm(_build_targets, refs, _chroot):
Alex Klein1699fab2022-09-08 08:46:06 -06001147 """Updates crosvm ebuilds to latest revision
Dennis Kempinef05f2b2021-09-08 16:36:49 -07001148
Alex Klein1699fab2022-09-08 08:46:06 -06001149 crosvm is not versioned. We are updating to the latest commit on the main
1150 branch.
Dennis Kempinef05f2b2021-09-08 16:36:49 -07001151
Alex Klein1699fab2022-09-08 08:46:06 -06001152 See: uprev_versioned_package.
Dennis Kempinef05f2b2021-09-08 16:36:49 -07001153
Alex Klein1699fab2022-09-08 08:46:06 -06001154 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001155 UprevVersionedPackageResult: The result of updating crosvm ebuilds.
Alex Klein1699fab2022-09-08 08:46:06 -06001156 """
1157 overlay = os.path.join(
1158 constants.SOURCE_ROOT, constants.CHROMIUMOS_OVERLAY_DIR
1159 )
1160 repo_path = os.path.join(constants.SOURCE_ROOT, "src", "crosvm")
1161 manifest = git.ManifestCheckout.Cached(repo_path)
Dennis Kempinef05f2b2021-09-08 16:36:49 -07001162
Alex Klein1699fab2022-09-08 08:46:06 -06001163 uprev_manager = uprev_lib.UprevOverlayManager([overlay], manifest)
1164 uprev_manager.uprev(
1165 package_list=[
1166 "chromeos-base/crosvm",
1167 "dev-rust/assertions",
1168 "dev-rust/cros_async",
1169 "dev-rust/cros_fuzz",
1170 "dev-rust/data_model",
1171 "dev-rust/enumn",
1172 "dev-rust/io_uring",
1173 "dev-rust/p9",
1174 "dev-rust/sync",
1175 "dev-rust/sys_util",
1176 "dev-rust/tempfile",
1177 "media-sound/audio_streams",
1178 ],
1179 force=True,
1180 )
Dennis Kempinef05f2b2021-09-08 16:36:49 -07001181
Alex Klein1699fab2022-09-08 08:46:06 -06001182 updated_files = uprev_manager.modified_ebuilds
1183 result = uprev_lib.UprevVersionedPackageResult()
1184 result.add_result(refs[0].revision, updated_files)
1185 return result
Dennis Kempinef05f2b2021-09-08 16:36:49 -07001186
1187
Yi Choua4854ac2022-11-14 10:54:24 +08001188@uprevs_versioned_package("chromeos-base/ti50-emulator")
1189def uprev_ti50_emulator(_build_targets, refs, _chroot):
1190 """Updates ti50-emulator ebuilds to latest revision
1191
1192 ti50-emulator is not versioned. We are updating to the latest commit on the
1193 main branch.
1194
1195 See: uprev_versioned_package.
1196
1197 Returns:
1198 UprevVersionedPackageResult: The result of updating ti50-emulator
Trent Aptedb18e36f2023-05-10 15:06:38 +10001199 ebuild.
Yi Choua4854ac2022-11-14 10:54:24 +08001200 """
1201 overlay = os.path.join(
1202 constants.SOURCE_ROOT, constants.CHROMEOS_OVERLAY_DIR
1203 )
1204
1205 # The ti50-emulator will touch multiple repos.
1206 manifest = git.ManifestCheckout.Cached(constants.SOURCE_ROOT)
1207
1208 uprev_manager = uprev_lib.UprevOverlayManager([overlay], manifest)
1209 uprev_manager.uprev(
1210 package_list=["chromeos-base/ti50-emulator"],
1211 force=True,
1212 )
1213
1214 updated_files = uprev_manager.modified_ebuilds
1215 result = uprev_lib.UprevVersionedPackageResult()
1216 result.add_result(refs[-1].revision, updated_files)
1217 return result
1218
1219
Jeremy Bettisaf96afb2023-01-11 16:09:58 -07001220@uprevs_versioned_package("chromeos-base/ec-devutils")
Jeremy Bettis0186d252023-01-19 14:47:46 -07001221def uprev_ecdevutils(_build_targets, refs, _chroot):
1222 """Updates ec-devutils ebuilds to latest revision
1223
Alex Kleinfee86da2023-01-20 18:40:06 -07001224 ec-devutils is not versioned. We are updating to the latest commit on the
1225 main branch.
Jeremy Bettis0186d252023-01-19 14:47:46 -07001226
1227 See: uprev_versioned_package.
1228
1229 Returns:
1230 UprevVersionedPackageResult: The result of updating ec-devutils ebuilds.
1231 """
1232 overlay = os.path.join(
1233 constants.SOURCE_ROOT, constants.CHROMIUMOS_OVERLAY_DIR
1234 )
1235 repo_path = os.path.join(constants.SOURCE_ROOT, "src", "platform", "ec")
1236 manifest = git.ManifestCheckout.Cached(repo_path)
1237
1238 uprev_manager = uprev_lib.UprevOverlayManager([overlay], manifest)
1239 uprev_manager.uprev(
1240 package_list=[
1241 "chromeos-base/ec-devutils",
1242 ],
1243 force=True,
1244 )
1245
1246 updated_files = uprev_manager.modified_ebuilds
1247 result = uprev_lib.UprevVersionedPackageResult()
1248 result.add_result(refs[0].revision, updated_files)
1249 return result
1250
1251
Jeremy Bettisaf96afb2023-01-11 16:09:58 -07001252@uprevs_versioned_package("chromeos-base/ec-utils")
Jeremy Bettisaf96afb2023-01-11 16:09:58 -07001253def uprev_ecutils(_build_targets, refs, _chroot):
1254 """Updates ec-utils ebuilds to latest revision
1255
1256 ec-utils is not versioned. We are updating to the latest commit on the main
1257 branch.
1258
1259 See: uprev_versioned_package.
1260
1261 Returns:
1262 UprevVersionedPackageResult: The result of updating ec-utils ebuilds.
1263 """
1264 overlay = os.path.join(
1265 constants.SOURCE_ROOT, constants.CHROMIUMOS_OVERLAY_DIR
1266 )
1267 repo_path = os.path.join(constants.SOURCE_ROOT, "src", "platform", "ec")
1268 manifest = git.ManifestCheckout.Cached(repo_path)
1269
1270 uprev_manager = uprev_lib.UprevOverlayManager([overlay], manifest)
1271 uprev_manager.uprev(
1272 package_list=[
Jeremy Bettisaf96afb2023-01-11 16:09:58 -07001273 "chromeos-base/ec-utils",
Jeremy Bettis0186d252023-01-19 14:47:46 -07001274 ],
1275 force=True,
1276 )
1277
1278 updated_files = uprev_manager.modified_ebuilds
1279 result = uprev_lib.UprevVersionedPackageResult()
1280 result.add_result(refs[0].revision, updated_files)
1281 return result
1282
1283
1284@uprevs_versioned_package("chromeos-base/ec-utils-test")
1285def uprev_ecutilstest(_build_targets, refs, _chroot):
1286 """Updates ec-utils-test ebuilds to latest revision
1287
Alex Kleinfee86da2023-01-20 18:40:06 -07001288 ec-utils-test is not versioned. We are updating to the latest commit on the
1289 main branch.
Jeremy Bettis0186d252023-01-19 14:47:46 -07001290
1291 See: uprev_versioned_package.
1292
1293 Returns:
Alex Kleinfee86da2023-01-20 18:40:06 -07001294 UprevVersionedPackageResult: The result of updating ec-utils-test
Trent Aptedb18e36f2023-05-10 15:06:38 +10001295 ebuilds.
Jeremy Bettis0186d252023-01-19 14:47:46 -07001296 """
1297 overlay = os.path.join(
1298 constants.SOURCE_ROOT, constants.CHROMIUMOS_OVERLAY_DIR
1299 )
1300 repo_path = os.path.join(constants.SOURCE_ROOT, "src", "platform", "ec")
1301 manifest = git.ManifestCheckout.Cached(repo_path)
1302
1303 uprev_manager = uprev_lib.UprevOverlayManager([overlay], manifest)
1304 uprev_manager.uprev(
1305 package_list=[
Jeremy Bettisaf96afb2023-01-11 16:09:58 -07001306 "chromeos-base/ec-utils-test",
1307 ],
1308 force=True,
1309 )
1310
1311 updated_files = uprev_manager.modified_ebuilds
1312 result = uprev_lib.UprevVersionedPackageResult()
1313 result.add_result(refs[0].revision, updated_files)
1314 return result
1315
1316
Alex Klein5caab872021-09-10 11:44:37 -06001317def get_best_visible(
Alex Klein1699fab2022-09-08 08:46:06 -06001318 atom: str, build_target: Optional["build_target_lib.BuildTarget"] = None
Alex Klein5caab872021-09-10 11:44:37 -06001319) -> package_info.PackageInfo:
Alex Klein1699fab2022-09-08 08:46:06 -06001320 """Returns the best visible CPV for the given atom.
Alex Kleinbbef2b32019-08-27 10:38:50 -06001321
Alex Klein1699fab2022-09-08 08:46:06 -06001322 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001323 atom: The atom to look up.
1324 build_target: The build target whose sysroot should be searched, or the
1325 SDK if not provided.
Alex Kleinad6b48a2020-01-08 16:57:41 -07001326
Alex Klein1699fab2022-09-08 08:46:06 -06001327 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001328 The best visible package, or None if none are visible.
Alex Klein1699fab2022-09-08 08:46:06 -06001329 """
1330 assert atom
Alex Kleinbbef2b32019-08-27 10:38:50 -06001331
Alex Klein1699fab2022-09-08 08:46:06 -06001332 return portage_util.PortageqBestVisible(
1333 atom,
1334 board=build_target.name if build_target else None,
1335 sysroot=build_target.root if build_target else None,
1336 )
Alex Kleinda39c6d2019-09-16 14:36:36 -06001337
1338
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001339def has_prebuilt(
1340 atom: str,
Alex Klein1699fab2022-09-08 08:46:06 -06001341 build_target: "build_target_lib.BuildTarget" = None,
1342 useflags: Union[Iterable[str], str] = None,
1343) -> bool:
1344 """Check if a prebuilt exists.
Alex Kleinda39c6d2019-09-16 14:36:36 -06001345
Alex Klein1699fab2022-09-08 08:46:06 -06001346 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001347 atom: The package whose prebuilt is being queried.
1348 build_target: The build target whose sysroot should be searched, or the
1349 SDK if not provided.
1350 useflags: Any additional USE flags that should be set. May be a string
1351 of properly formatted USE flags, or an iterable of individual flags.
Alex Kleinad6b48a2020-01-08 16:57:41 -07001352
Alex Klein1699fab2022-09-08 08:46:06 -06001353 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001354 True if there is an available prebuilt, False otherwise.
Alex Klein1699fab2022-09-08 08:46:06 -06001355 """
1356 assert atom
Alex Kleinda39c6d2019-09-16 14:36:36 -06001357
Alex Klein1699fab2022-09-08 08:46:06 -06001358 board = build_target.name if build_target else None
1359 extra_env = None
1360 if useflags:
1361 new_flags = useflags
1362 if not isinstance(useflags, str):
1363 new_flags = " ".join(useflags)
Alex Klein149fd3b2019-12-16 16:01:05 -07001364
Alex Klein1699fab2022-09-08 08:46:06 -06001365 existing = os.environ.get("USE", "")
1366 final_flags = "%s %s" % (existing, new_flags)
1367 extra_env = {"USE": final_flags.strip()}
1368 return portage_util.HasPrebuilt(atom, board=board, extra_env=extra_env)
Alex Klein36b117f2019-09-30 15:13:46 -06001369
1370
David Burger0f9dd4e2019-10-08 12:33:42 -06001371def builds(atom, build_target, packages=None):
Alex Klein1699fab2022-09-08 08:46:06 -06001372 """Check if |build_target| builds |atom| (has it in its depgraph)."""
1373 cros_build_lib.AssertInsideChroot()
Alex Klein36b117f2019-09-30 15:13:46 -06001374
Alex Klein1699fab2022-09-08 08:46:06 -06001375 pkgs = tuple(packages) if packages else None
1376 # TODO(crbug/1081828): Receive and use sysroot.
1377 graph, _sdk_graph = dependency.GetBuildDependency(
1378 build_target.root, build_target.name, pkgs
1379 )
1380 return any(atom in package for package in graph["package_deps"])
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001381
1382
Alex Klein6becabc2020-09-11 14:03:05 -06001383def needs_chrome_source(
Alex Klein1699fab2022-09-08 08:46:06 -06001384 build_target: "build_target_lib.BuildTarget",
Alex Klein6becabc2020-09-11 14:03:05 -06001385 compile_source=False,
1386 packages: Optional[List[package_info.PackageInfo]] = None,
Alex Klein1699fab2022-09-08 08:46:06 -06001387 useflags=None,
1388):
1389 """Check if the chrome source is needed.
Alex Klein6becabc2020-09-11 14:03:05 -06001390
Alex Klein1699fab2022-09-08 08:46:06 -06001391 The chrome source is needed if the build target builds chrome or any of its
1392 follower packages, and can't use a prebuilt for them either because it's not
1393 available, or because we can't use prebuilts because it must build from
1394 source.
1395 """
1396 cros_build_lib.AssertInsideChroot()
Alex Klein6becabc2020-09-11 14:03:05 -06001397
Sergey Frolov8eb38c12023-06-21 19:17:17 -06001398 # Find latest chrome PackageInfo.
1399 try:
1400 chrome_pi = portage_util.PortageqBestVisible(
1401 constants.CHROME_CP, board=build_target.name
1402 )
1403 chrome_cpvr = chrome_pi.cpvr
1404 except (portage_util.NoVisiblePackageError, package_info.ParseTypeError):
1405 chrome_cpvr = constants.CHROME_CP
1406
Alex Klein1699fab2022-09-08 08:46:06 -06001407 # Check if it builds chrome and/or a follower package.
1408 graph = depgraph.get_sysroot_dependency_graph(build_target.root, packages)
1409 builds_chrome = constants.CHROME_CP in graph
1410 builds_follower = {
1411 pkg: pkg in graph for pkg in constants.OTHER_CHROME_PACKAGES
1412 }
Alex Klein6becabc2020-09-11 14:03:05 -06001413
Alex Klein1699fab2022-09-08 08:46:06 -06001414 local_uprev = builds_chrome and revbump_chrome([build_target])
Alex Klein9ce3f682021-06-23 15:06:44 -06001415
Alex Kleinfee86da2023-01-20 18:40:06 -07001416 # When we are compiling source set False since we do not use prebuilts. When
1417 # not compiling from source, start with True, i.e. we have every prebuilt
Alex Klein1699fab2022-09-08 08:46:06 -06001418 # we've checked for up to this point.
1419 has_chrome_prebuilt = not compile_source
1420 has_follower_prebuilts = not compile_source
1421 # Save packages that need prebuilts for reporting.
1422 pkgs_needing_prebuilts = []
1423 if compile_source:
1424 # Need everything.
Sergey Frolov8eb38c12023-06-21 19:17:17 -06001425 pkgs_needing_prebuilts.append(chrome_cpvr)
Alex Klein1699fab2022-09-08 08:46:06 -06001426 pkgs_needing_prebuilts.extend(
1427 [pkg for pkg, builds_pkg in builds_follower.items() if builds_pkg]
1428 )
1429 else:
1430 # Check chrome itself.
1431 if builds_chrome:
1432 has_chrome_prebuilt = has_prebuilt(
Sergey Frolov8eb38c12023-06-21 19:17:17 -06001433 chrome_cpvr,
Alex Klein1699fab2022-09-08 08:46:06 -06001434 build_target=build_target,
1435 useflags=useflags,
1436 )
1437 if not has_chrome_prebuilt:
Sergey Frolov8eb38c12023-06-21 19:17:17 -06001438 pkgs_needing_prebuilts.append(chrome_cpvr)
Alex Klein1699fab2022-09-08 08:46:06 -06001439 # Check follower packages.
1440 for pkg, builds_pkg in builds_follower.items():
1441 if not builds_pkg:
1442 continue
1443 prebuilt = has_prebuilt(
1444 pkg, build_target=build_target, useflags=useflags
1445 )
1446 has_follower_prebuilts &= prebuilt
1447 if not prebuilt:
1448 pkgs_needing_prebuilts.append(pkg)
Alex Kleinfee86da2023-01-20 18:40:06 -07001449 # Postcondition: has_chrome_prebuilt and has_follower_prebuilts now
1450 # correctly reflect whether we actually have the corresponding prebuilts for
1451 # the build.
Alex Klein6becabc2020-09-11 14:03:05 -06001452
Alex Klein1699fab2022-09-08 08:46:06 -06001453 needs_chrome = builds_chrome and not has_chrome_prebuilt
1454 needs_follower = (
1455 any(builds_follower.values()) and not has_follower_prebuilts
1456 )
Alex Klein6becabc2020-09-11 14:03:05 -06001457
Alex Klein1699fab2022-09-08 08:46:06 -06001458 return NeedsChromeSourceResult(
1459 needs_chrome_source=needs_chrome or needs_follower,
1460 builds_chrome=builds_chrome,
1461 packages=[package_info.parse(p) for p in pkgs_needing_prebuilts],
1462 missing_chrome_prebuilt=not has_chrome_prebuilt,
1463 missing_follower_prebuilt=not has_follower_prebuilts,
1464 local_uprev=local_uprev,
1465 )
Alex Klein6becabc2020-09-11 14:03:05 -06001466
1467
Alex Klein68a28712021-11-08 11:08:30 -07001468class TargetVersions(NamedTuple):
Alex Klein1699fab2022-09-08 08:46:06 -06001469 """Data class for the info that makes up the "target versions"."""
1470
1471 android_version: str
1472 android_branch: str
1473 android_target: str
1474 chrome_version: str
1475 platform_version: str
1476 milestone_version: str
1477 full_version: str
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001478 lacros_version: str
Alex Klein68a28712021-11-08 11:08:30 -07001479
1480
1481def get_target_versions(
Alex Klein1699fab2022-09-08 08:46:06 -06001482 build_target: "build_target_lib.BuildTarget",
1483 packages: List[package_info.PackageInfo] = None,
Alex Klein68a28712021-11-08 11:08:30 -07001484) -> TargetVersions:
Alex Klein1699fab2022-09-08 08:46:06 -06001485 """Aggregate version info for a few key packages and the OS as a whole."""
1486 # Android version.
1487 android_version = determine_android_version(build_target.name)
1488 logging.info("Found android version: %s", android_version)
1489 # Android branch version.
1490 android_branch = determine_android_branch(build_target.name)
1491 logging.info("Found android branch version: %s", android_branch)
1492 # Android target version.
1493 android_target = determine_android_target(build_target.name)
1494 logging.info("Found android target version: %s", android_target)
Alex Klein68a28712021-11-08 11:08:30 -07001495
Alex Klein1699fab2022-09-08 08:46:06 -06001496 # TODO(crbug/1019770): Investigate cases where builds_chrome is true but
1497 # chrome_version is None.
Alex Klein68a28712021-11-08 11:08:30 -07001498
Alex Klein1699fab2022-09-08 08:46:06 -06001499 builds_chrome = builds(constants.CHROME_CP, build_target, packages=packages)
1500 chrome_version = None
1501 if builds_chrome:
1502 # Chrome version fetch.
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001503 chrome_version = determine_package_version(
1504 constants.CHROME_CP, build_target
1505 )
Alex Klein1699fab2022-09-08 08:46:06 -06001506 logging.info("Found chrome version: %s", chrome_version)
Alex Klein68a28712021-11-08 11:08:30 -07001507
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001508 builds_lacros = builds(constants.LACROS_CP, build_target, packages=packages)
1509 lacros_version = None
1510 if builds_lacros:
1511 # LaCrOS version fetch.
1512 lacros_version = determine_package_version(
1513 constants.LACROS_CP, build_target
1514 )
1515 logging.info("Found LaCrOS version: %s", lacros_version)
1516
Alex Klein1699fab2022-09-08 08:46:06 -06001517 # The ChromeOS version info.
1518 platform_version = determine_platform_version()
1519 milestone_version = determine_milestone_version()
1520 full_version = determine_full_version()
Alex Klein68a28712021-11-08 11:08:30 -07001521
Alex Klein1699fab2022-09-08 08:46:06 -06001522 return TargetVersions(
1523 android_version,
1524 android_branch,
1525 android_target,
1526 chrome_version,
1527 platform_version,
1528 milestone_version,
1529 full_version,
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001530 lacros_version,
Alex Klein1699fab2022-09-08 08:46:06 -06001531 )
Alex Klein68a28712021-11-08 11:08:30 -07001532
1533
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001534def determine_package_version(
1535 cpv_name: str,
Alex Klein1699fab2022-09-08 08:46:06 -06001536 build_target: "build_target_lib.BuildTarget",
1537) -> Optional[str]:
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001538 """Returns the current package version for the board (or in buildroot).
Michael Mortensenc2615b72019-10-15 08:12:24 -06001539
Alex Klein1699fab2022-09-08 08:46:06 -06001540 Args:
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001541 cpv_name: the name of the ebuild CPV
Alex Klein348e7692022-10-13 17:03:37 -06001542 build_target: The board build target.
Alex Kleinad6b48a2020-01-08 16:57:41 -07001543
Alex Klein1699fab2022-09-08 08:46:06 -06001544 Returns:
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001545 The version of the package, if available.
Alex Klein1699fab2022-09-08 08:46:06 -06001546 """
1547 # TODO(crbug/1019770): Long term we should not need the try/catch here once
1548 # the builds function above only returns True for chrome when
1549 # determine_chrome_version will succeed.
1550 try:
1551 pkg_info = portage_util.PortageqBestVisible(
Gilberto Contreras4f2d1452023-01-30 23:22:58 +00001552 cpv_name, build_target.name, cwd=constants.SOURCE_ROOT
Alex Klein1699fab2022-09-08 08:46:06 -06001553 )
1554 except cros_build_lib.RunCommandError as e:
1555 # Return None because portage failed when trying to determine the chrome
1556 # version.
1557 logging.warning("Caught exception in determine_chrome_package: %s", e)
1558 return None
1559 # Something like 78.0.3877.4_rc -> 78.0.3877.4
1560 return pkg_info.version.partition("_")[0]
Michael Mortensenc2615b72019-10-15 08:12:24 -06001561
1562
Alex Klein68a28712021-11-08 11:08:30 -07001563@functools.lru_cache()
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001564def determine_android_package(board: str) -> Optional[str]:
Alex Klein1699fab2022-09-08 08:46:06 -06001565 """Returns the active Android container package in use by the board.
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001566
Alex Klein1699fab2022-09-08 08:46:06 -06001567 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001568 board: The board name this is specific to.
Alex Kleinad6b48a2020-01-08 16:57:41 -07001569
Alex Klein1699fab2022-09-08 08:46:06 -06001570 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001571 The android package string if there is one.
Alex Klein1699fab2022-09-08 08:46:06 -06001572 """
1573 try:
1574 packages = portage_util.GetPackageDependencies(
1575 "virtual/target-os", board=board
1576 )
1577 except cros_build_lib.RunCommandError as e:
1578 # Return None because a command (likely portage) failed when trying to
1579 # determine the package.
1580 logging.warning("Caught exception in determine_android_package: %s", e)
1581 return None
1582
1583 # We assume there is only one Android package in the depgraph.
1584 for package in packages:
1585 if package.startswith(
1586 "chromeos-base/android-container-"
1587 ) or package.startswith("chromeos-base/android-vm-"):
1588 return package
Michael Mortensene0f4b542019-10-24 15:30:23 -06001589 return None
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001590
1591
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001592def determine_android_version(board: str, package: str = None):
Alex Klein1699fab2022-09-08 08:46:06 -06001593 """Determine the current Android version in buildroot now and return it.
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001594
Alex Klein1699fab2022-09-08 08:46:06 -06001595 This uses the typical portage logic to determine which version of Android
1596 is active right now in the buildroot.
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001597
Alex Klein1699fab2022-09-08 08:46:06 -06001598 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001599 board: The board name this is specific to.
1600 package: The Android package, if already computed.
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001601
Alex Klein1699fab2022-09-08 08:46:06 -06001602 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001603 The Android build ID of the container for the board.
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001604
Alex Klein1699fab2022-09-08 08:46:06 -06001605 Raises:
Alex Klein348e7692022-10-13 17:03:37 -06001606 NoAndroidVersionError: if no unique Android version can be determined.
Alex Klein1699fab2022-09-08 08:46:06 -06001607 """
1608 if not package:
1609 package = determine_android_package(board)
1610 if not package:
1611 return None
Alex Klein7bd88b12023-05-19 15:39:55 -06001612 cpv = package_info.parse(package)
Alex Klein1699fab2022-09-08 08:46:06 -06001613 if not cpv:
1614 raise NoAndroidVersionError(
1615 "Android version could not be determined for %s" % board
1616 )
Alex Klein7bd88b12023-05-19 15:39:55 -06001617 return cpv.version
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001618
Alex Klein7a3a7dd2020-01-08 16:44:38 -07001619
Mike Frysinger8e1c99a2021-03-05 00:58:11 -05001620def determine_android_branch(board, package=None):
Alex Klein1699fab2022-09-08 08:46:06 -06001621 """Returns the Android branch in use by the active container ebuild."""
1622 if not package:
1623 package = determine_android_package(board)
1624 if not package:
1625 return None
1626 ebuild_path = portage_util.FindEbuildForBoardPackage(package, board)
1627 # We assume all targets pull from the same branch and that we always
1628 # have at least one of the following targets.
Shao-Chuan Leeca2cbcc2022-11-02 08:28:31 +09001629 # TODO(b/187795671): Do this in a less hacky way.
1630 targets = android.GetAllAndroidEbuildTargets()
Alex Klein1699fab2022-09-08 08:46:06 -06001631 ebuild_content = osutils.SourceEnvironment(ebuild_path, targets)
1632 for target in targets:
1633 if target in ebuild_content:
1634 branch = re.search(r"(.*?)-linux-", ebuild_content[target])
1635 if branch is not None:
1636 return branch.group(1)
1637 raise NoAndroidBranchError(
1638 "Android branch could not be determined for %s (ebuild empty?)" % board
1639 )
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001640
1641
Mike Frysinger8e1c99a2021-03-05 00:58:11 -05001642def determine_android_target(board, package=None):
Alex Klein1699fab2022-09-08 08:46:06 -06001643 """Returns the Android target in use by the active container ebuild."""
1644 if not package:
1645 package = determine_android_package(board)
1646 if not package:
1647 return None
1648 if package.startswith("chromeos-base/android-vm-"):
1649 return "bertha"
1650 elif package.startswith("chromeos-base/android-container-"):
1651 return "cheets"
Michael Mortensenb70e8a82019-10-10 18:43:41 -06001652
Alex Klein1699fab2022-09-08 08:46:06 -06001653 raise NoAndroidTargetError(
1654 "Android Target cannot be determined for the package: %s" % package
1655 )
Michael Mortensen9fdb14b2019-10-17 11:17:30 -06001656
1657
1658def determine_platform_version():
Alex Klein1699fab2022-09-08 08:46:06 -06001659 """Returns the platform version from the source root."""
1660 # Platform version is something like '12575.0.0'.
1661 version = chromeos_version.VersionInfo.from_repo(constants.SOURCE_ROOT)
1662 return version.VersionString()
Michael Mortensen009cb662019-10-21 11:38:43 -06001663
1664
1665def determine_milestone_version():
Alex Klein1699fab2022-09-08 08:46:06 -06001666 """Returns the platform version from the source root."""
1667 # Milestone version is something like '79'.
1668 version = chromeos_version.VersionInfo.from_repo(constants.SOURCE_ROOT)
1669 return version.chrome_branch
Michael Mortensen009cb662019-10-21 11:38:43 -06001670
Alex Klein7a3a7dd2020-01-08 16:44:38 -07001671
Michael Mortensen009cb662019-10-21 11:38:43 -06001672def determine_full_version():
Alex Klein1699fab2022-09-08 08:46:06 -06001673 """Returns the full version from the source root."""
1674 # Full version is something like 'R79-12575.0.0'.
1675 milestone_version = determine_milestone_version()
1676 platform_version = determine_platform_version()
1677 full_version = "R%s-%s" % (milestone_version, platform_version)
1678 return full_version
Michael Mortensen71ef5682020-05-07 14:29:24 -06001679
1680
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001681def find_fingerprints(
Alex Klein1699fab2022-09-08 08:46:06 -06001682 build_target: "build_target_lib.BuildTarget",
1683) -> List[str]:
1684 """Returns a list of fingerprints for this build.
Michael Mortensende716a12020-05-15 11:27:00 -06001685
Alex Klein1699fab2022-09-08 08:46:06 -06001686 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001687 build_target: The build target.
Michael Mortensende716a12020-05-15 11:27:00 -06001688
Alex Klein1699fab2022-09-08 08:46:06 -06001689 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001690 List of fingerprint strings.
Alex Klein1699fab2022-09-08 08:46:06 -06001691 """
1692 cros_build_lib.AssertInsideChroot()
1693 fp_file = "cheets-fingerprint.txt"
1694 fp_path = os.path.join(
1695 image_lib.GetLatestImageLink(build_target.name), fp_file
1696 )
1697 if not os.path.isfile(fp_path):
1698 logging.info("Fingerprint file not found: %s", fp_path)
1699 return []
1700 logging.info("Reading fingerprint file: %s", fp_path)
1701 fingerprints = osutils.ReadFile(fp_path).splitlines()
1702 return fingerprints
Michael Mortensende716a12020-05-15 11:27:00 -06001703
1704
Alex Klein1699fab2022-09-08 08:46:06 -06001705def get_all_firmware_versions(build_target: "build_target_lib.BuildTarget"):
1706 """Extract firmware version for all models present.
Michael Mortensen59e30872020-05-18 14:12:49 -06001707
Alex Klein1699fab2022-09-08 08:46:06 -06001708 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001709 build_target: The build target.
Michael Mortensen59e30872020-05-18 14:12:49 -06001710
Alex Klein1699fab2022-09-08 08:46:06 -06001711 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001712 A dict of FirmwareVersions namedtuple instances by model.
1713 Each element will be populated based on whether it was present in the
1714 command output.
Alex Klein1699fab2022-09-08 08:46:06 -06001715 """
1716 cros_build_lib.AssertInsideChroot()
1717 result = {}
1718 # Note that example output for _get_firmware_version_cmd_result is available
1719 # in the packages_unittest.py for testing get_all_firmware_versions.
1720 cmd_result = _get_firmware_version_cmd_result(build_target)
Michael Mortensen59e30872020-05-18 14:12:49 -06001721
Alex Klein1699fab2022-09-08 08:46:06 -06001722 if cmd_result:
1723 # There is a blank line between the version info for each model.
1724 firmware_version_payloads = cmd_result.split("\n\n")
1725 for firmware_version_payload in firmware_version_payloads:
1726 if "BIOS" in firmware_version_payload:
1727 firmware_version = _find_firmware_versions(
1728 firmware_version_payload
1729 )
1730 result[firmware_version.model] = firmware_version
1731 return result
Michael Mortensen59e30872020-05-18 14:12:49 -06001732
1733
Benjamin Shai0858cd32022-01-10 20:23:49 +00001734class FirmwareVersions(NamedTuple):
Alex Klein1699fab2022-09-08 08:46:06 -06001735 """Tuple to hold firmware versions, with truthiness."""
Benjamin Shai0858cd32022-01-10 20:23:49 +00001736
Alex Klein1699fab2022-09-08 08:46:06 -06001737 model: Optional[str]
1738 main: Optional[str]
1739 main_rw: Optional[str]
1740 ec: Optional[str]
1741 ec_rw: Optional[str]
1742
1743 def __bool__(self):
1744 return bool(
1745 self.model or self.main or self.main_rw or self.ec or self.ec_rw
1746 )
Michael Mortensen71ef5682020-05-07 14:29:24 -06001747
1748
Alex Klein1699fab2022-09-08 08:46:06 -06001749def get_firmware_versions(build_target: "build_target_lib.BuildTarget"):
1750 """Extract version information from the firmware updater, if one exists.
Michael Mortensen71ef5682020-05-07 14:29:24 -06001751
Alex Klein1699fab2022-09-08 08:46:06 -06001752 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001753 build_target: The build target.
Michael Mortensen71ef5682020-05-07 14:29:24 -06001754
Alex Klein1699fab2022-09-08 08:46:06 -06001755 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001756 A FirmwareVersions namedtuple instance.
1757 Each element will either be set to the string output by the firmware
1758 updater shellball, or None if there is no firmware updater.
Alex Klein1699fab2022-09-08 08:46:06 -06001759 """
1760 cros_build_lib.AssertInsideChroot()
1761 cmd_result = _get_firmware_version_cmd_result(build_target)
1762 if cmd_result:
1763 return _find_firmware_versions(cmd_result)
1764 else:
1765 return FirmwareVersions(None, None, None, None, None)
Michael Mortensen71ef5682020-05-07 14:29:24 -06001766
1767
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001768def _get_firmware_version_cmd_result(
Alex Klein1699fab2022-09-08 08:46:06 -06001769 build_target: "build_target_lib.BuildTarget",
1770) -> Optional[str]:
1771 """Gets the raw result output of the firmware updater version command.
Michael Mortensen71ef5682020-05-07 14:29:24 -06001772
Alex Klein1699fab2022-09-08 08:46:06 -06001773 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001774 build_target: The build target.
Michael Mortensen71ef5682020-05-07 14:29:24 -06001775
Alex Klein1699fab2022-09-08 08:46:06 -06001776 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001777 Command execution result.
Alex Klein1699fab2022-09-08 08:46:06 -06001778 """
1779 updater = os.path.join(
1780 build_target.root, "usr/sbin/chromeos-firmwareupdate"
1781 )
1782 logging.info("Calling updater %s", updater)
1783 # Call the updater using the chroot-based path.
1784 try:
1785 return cros_build_lib.run(
1786 [updater, "-V"],
1787 capture_output=True,
1788 log_output=True,
1789 encoding="utf-8",
1790 ).stdout
1791 except cros_build_lib.RunCommandError:
1792 # Updater probably doesn't exist (e.g. betty).
1793 return None
Michael Mortensen71ef5682020-05-07 14:29:24 -06001794
1795
1796def _find_firmware_versions(cmd_output):
Alex Klein1699fab2022-09-08 08:46:06 -06001797 """Finds firmware version output via regex matches against the cmd_output.
Michael Mortensen71ef5682020-05-07 14:29:24 -06001798
Alex Klein1699fab2022-09-08 08:46:06 -06001799 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001800 cmd_output: The raw output to search against.
Michael Mortensen71ef5682020-05-07 14:29:24 -06001801
Alex Klein1699fab2022-09-08 08:46:06 -06001802 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001803 FirmwareVersions namedtuple with results.
1804 Each element will either be set to the string output by the firmware
1805 updater shellball, or None if there is no match.
Alex Klein1699fab2022-09-08 08:46:06 -06001806 """
Michael Mortensen71ef5682020-05-07 14:29:24 -06001807
Alex Klein1699fab2022-09-08 08:46:06 -06001808 # Sometimes a firmware bundle includes a special combination of RO+RW
1809 # firmware. In this case, the RW firmware version is indicated with a "(RW)
1810 # version" field. In other cases, the "(RW) version" field is not present.
1811 # Therefore, search for the "(RW)" fields first and if they aren't present,
1812 # fallback to the other format. e.g. just "BIOS version:".
1813 # TODO(mmortensen): Use JSON once the firmware updater supports it.
1814 main = None
1815 main_rw = None
1816 ec = None
1817 ec_rw = None
1818 model = None
Michael Mortensen71ef5682020-05-07 14:29:24 -06001819
Alex Klein1699fab2022-09-08 08:46:06 -06001820 match = re.search(r"BIOS version:\s*(?P<version>.*)", cmd_output)
1821 if match:
1822 main = match.group("version")
Michael Mortensen71ef5682020-05-07 14:29:24 -06001823
Alex Klein1699fab2022-09-08 08:46:06 -06001824 match = re.search(r"BIOS \(RW\) version:\s*(?P<version>.*)", cmd_output)
1825 if match:
1826 main_rw = match.group("version")
Michael Mortensen71ef5682020-05-07 14:29:24 -06001827
Alex Klein1699fab2022-09-08 08:46:06 -06001828 match = re.search(r"EC version:\s*(?P<version>.*)", cmd_output)
1829 if match:
1830 ec = match.group("version")
Michael Mortensen71ef5682020-05-07 14:29:24 -06001831
Alex Klein1699fab2022-09-08 08:46:06 -06001832 match = re.search(r"EC \(RW\) version:\s*(?P<version>.*)", cmd_output)
1833 if match:
1834 ec_rw = match.group("version")
Michael Mortensen71ef5682020-05-07 14:29:24 -06001835
Alex Klein1699fab2022-09-08 08:46:06 -06001836 match = re.search(r"Model:\s*(?P<model>.*)", cmd_output)
1837 if match:
1838 model = match.group("model")
Michael Mortensen71ef5682020-05-07 14:29:24 -06001839
Alex Klein1699fab2022-09-08 08:46:06 -06001840 return FirmwareVersions(model, main, main_rw, ec, ec_rw)
Michael Mortensena4af79e2020-05-06 16:18:48 -06001841
1842
Benjamin Shai0858cd32022-01-10 20:23:49 +00001843class MainEcFirmwareVersions(NamedTuple):
Alex Klein1699fab2022-09-08 08:46:06 -06001844 """Tuple to hold main and ec firmware versions, with truthiness."""
Benjamin Shai0858cd32022-01-10 20:23:49 +00001845
Alex Klein1699fab2022-09-08 08:46:06 -06001846 main_fw_version: Optional[str]
1847 ec_fw_version: Optional[str]
1848
1849 def __bool__(self):
1850 return bool(self.main_fw_version or self.ec_fw_version)
Benjamin Shai0858cd32022-01-10 20:23:49 +00001851
Michael Mortensena4af79e2020-05-06 16:18:48 -06001852
Alex Klein1699fab2022-09-08 08:46:06 -06001853def determine_firmware_versions(build_target: "build_target_lib.BuildTarget"):
1854 """Returns a namedtuple with main and ec firmware versions.
Michael Mortensena4af79e2020-05-06 16:18:48 -06001855
Alex Klein1699fab2022-09-08 08:46:06 -06001856 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001857 build_target: The build target.
Michael Mortensena4af79e2020-05-06 16:18:48 -06001858
Alex Klein1699fab2022-09-08 08:46:06 -06001859 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001860 MainEcFirmwareVersions namedtuple with results.
Alex Klein1699fab2022-09-08 08:46:06 -06001861 """
1862 fw_versions = get_firmware_versions(build_target)
1863 main_fw_version = fw_versions.main_rw or fw_versions.main
1864 ec_fw_version = fw_versions.ec_rw or fw_versions.ec
Michael Mortensena4af79e2020-05-06 16:18:48 -06001865
Alex Klein1699fab2022-09-08 08:46:06 -06001866 return MainEcFirmwareVersions(main_fw_version, ec_fw_version)
Michael Mortensenfbf2b2d2020-05-14 16:33:06 -06001867
Benjamin Shai0858cd32022-01-10 20:23:49 +00001868
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001869def determine_kernel_version(
Alex Klein1699fab2022-09-08 08:46:06 -06001870 build_target: "build_target_lib.BuildTarget",
Lizzy Presland0b978e62022-09-09 16:55:29 +00001871) -> str:
Alex Klein1699fab2022-09-08 08:46:06 -06001872 """Returns a string containing the kernel version for this build target.
Michael Mortensenfbf2b2d2020-05-14 16:33:06 -06001873
Alex Klein1699fab2022-09-08 08:46:06 -06001874 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001875 build_target: The build target.
Michael Mortensenfbf2b2d2020-05-14 16:33:06 -06001876
Alex Klein1699fab2022-09-08 08:46:06 -06001877 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001878 The kernel versions, or empty string.
Alex Klein1699fab2022-09-08 08:46:06 -06001879 """
Lizzy Presland0b978e62022-09-09 16:55:29 +00001880 target_virtual_pkg = "virtual/linux-sources"
Alex Klein1699fab2022-09-08 08:46:06 -06001881 try:
Lizzy Presland0b978e62022-09-09 16:55:29 +00001882 candidate_packages = portage_util.GetFlattenedDepsForPackage(
1883 target_virtual_pkg,
1884 sysroot=build_target.root,
1885 board=build_target.name,
1886 depth=1,
1887 )
1888 installed_packages = portage_util.GetPackageDependencies(
1889 target_virtual_pkg, board=build_target.name
Alex Klein1699fab2022-09-08 08:46:06 -06001890 )
1891 except cros_build_lib.RunCommandError as e:
1892 logging.warning("Unable to get package list for metadata: %s", e)
Lizzy Presland0b978e62022-09-09 16:55:29 +00001893 return ""
1894 if not candidate_packages:
1895 raise KernelVersionError("No package found in FlattenedDepsForPackage")
1896 if not installed_packages:
1897 raise KernelVersionError("No package found in GetPackageDependencies")
1898 packages = [
1899 p
1900 for p in installed_packages
1901 if p in candidate_packages and target_virtual_pkg not in p
1902 ]
1903 if len(packages) == 0:
1904 raise KernelVersionError(
1905 "No matches for installed packages were found in candidate "
1906 "packages. Did GetFlattenedDepsForPackage search all possible "
1907 "package versions?\tInstalled: %s\tCandidates: %s"
1908 % (" ".join(installed_packages), " ".join(candidate_packages))
1909 )
1910 if len(packages) > 1:
1911 raise KernelVersionError(
1912 "Too many packages found in intersection of installed packages and "
1913 "possible kernel versions (%s)" % "".join(packages)
1914 )
1915 kernel_version = package_info.SplitCPV(packages[0]).version
1916 logging.info("Found active kernel version: %s", kernel_version)
1917 return kernel_version
Michael Mortensen125bb012020-05-21 14:02:10 -06001918
1919
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001920def get_models(
Alex Klein1699fab2022-09-08 08:46:06 -06001921 build_target: "build_target_lib.BuildTarget", log_output: bool = True
1922) -> Optional[List[str]]:
1923 """Obtain a list of models supported by a unified board.
Michael Mortensen125bb012020-05-21 14:02:10 -06001924
Alex Klein1699fab2022-09-08 08:46:06 -06001925 This ignored whitelabel models since GoldenEye has no specific support for
1926 these at present.
Michael Mortensen125bb012020-05-21 14:02:10 -06001927
Alex Klein1699fab2022-09-08 08:46:06 -06001928 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001929 build_target: The build target.
1930 log_output: Whether to log the output of the cros_config_host
1931 invocation.
Michael Mortensen125bb012020-05-21 14:02:10 -06001932
Alex Klein1699fab2022-09-08 08:46:06 -06001933 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001934 A list of models supported by this board, if it is a unified build;
1935 None, if it is not a unified build.
Alex Klein1699fab2022-09-08 08:46:06 -06001936 """
1937 return _run_cros_config_host(
1938 build_target, ["list-models"], log_output=log_output
1939 )
Michael Mortensen125bb012020-05-21 14:02:10 -06001940
1941
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001942def get_key_id(
Alex Klein1699fab2022-09-08 08:46:06 -06001943 build_target: "build_target_lib.BuildTarget", model: str
1944) -> Optional[str]:
1945 """Obtain the key_id for a model within the build_target.
Michael Mortensen359c1f32020-05-28 19:35:42 -06001946
Alex Klein1699fab2022-09-08 08:46:06 -06001947 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001948 build_target: The build target.
1949 model: The model name
Michael Mortensen359c1f32020-05-28 19:35:42 -06001950
Alex Klein1699fab2022-09-08 08:46:06 -06001951 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001952 A key_id or None.
Alex Klein1699fab2022-09-08 08:46:06 -06001953 """
1954 model_arg = "--model=" + model
1955 key_id_list = _run_cros_config_host(
1956 build_target, [model_arg, "get", "/firmware-signing", "key-id"]
1957 )
1958 key_id = None
1959 if len(key_id_list) == 1:
1960 key_id = key_id_list[0]
1961 return key_id
Michael Mortensen359c1f32020-05-28 19:35:42 -06001962
1963
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001964def _run_cros_config_host(
Alex Klein1699fab2022-09-08 08:46:06 -06001965 build_target: "build_target_lib.BuildTarget",
Matthias Kaehlckebf7d1772021-11-04 16:01:36 -07001966 args: List[str],
Alex Klein1699fab2022-09-08 08:46:06 -06001967 log_output: bool = True,
1968) -> Optional[List[str]]:
1969 """Run the cros_config_host tool.
Michael Mortensen125bb012020-05-21 14:02:10 -06001970
Alex Klein1699fab2022-09-08 08:46:06 -06001971 Args:
Alex Klein348e7692022-10-13 17:03:37 -06001972 build_target: The build target.
1973 args: List of arguments to pass.
1974 log_output: Whether to log the output of the cros_config_host.
Michael Mortensen125bb012020-05-21 14:02:10 -06001975
Alex Klein1699fab2022-09-08 08:46:06 -06001976 Returns:
Alex Klein348e7692022-10-13 17:03:37 -06001977 Output of the tool
Alex Klein1699fab2022-09-08 08:46:06 -06001978 """
1979 cros_build_lib.AssertInsideChroot()
1980 tool = "/usr/bin/cros_config_host"
1981 if not os.path.isfile(tool):
1982 return None
Michael Mortensen125bb012020-05-21 14:02:10 -06001983
Alex Klein1699fab2022-09-08 08:46:06 -06001984 config_fname = build_target.full_path(
1985 "usr/share/chromeos-config/yaml/config.yaml"
1986 )
Michael Mortensen125bb012020-05-21 14:02:10 -06001987
Alex Klein1699fab2022-09-08 08:46:06 -06001988 result = cros_build_lib.run(
1989 [tool, "-c", config_fname] + args,
1990 capture_output=True,
1991 encoding="utf-8",
1992 log_output=log_output,
1993 check=False,
1994 )
1995 if result.returncode:
1996 # Show the output for debugging purposes.
1997 if "No such file or directory" not in result.stderr:
1998 logging.error("cros_config_host failed: %s\n", result.stderr)
1999 return None
2000 return result.stdout.strip().splitlines()