Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1 | # Copyright (c) 2014 The Chromium OS Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | import ast |
| 6 | import ctypes |
| 7 | import logging |
| 8 | import os |
| 9 | import re |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 10 | import time |
| 11 | import uuid |
| 12 | |
| 13 | from autotest_lib.client.bin import utils |
| 14 | from autotest_lib.client.common_lib import error |
| 15 | from autotest_lib.server import autotest |
J. Richard Barnette | cab6be3 | 2014-07-17 13:07:39 -0700 | [diff] [blame] | 16 | from autotest_lib.server import test |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 17 | from autotest_lib.server.cros import vboot_constants as vboot |
| 18 | from autotest_lib.server.cros.faft.config.config import Config as FAFTConfig |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 19 | from autotest_lib.server.cros.faft.rpc_proxy import RPCProxy |
J. Richard Barnette | a57ff84 | 2014-06-05 10:00:31 -0700 | [diff] [blame] | 20 | from autotest_lib.server.cros.faft.utils.faft_checkers import FAFTCheckers |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 21 | from autotest_lib.server.cros.servo import chrome_ec |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 22 | |
| 23 | |
| 24 | class ConnectionError(Exception): |
| 25 | """Raised on an error of connecting DUT.""" |
| 26 | pass |
| 27 | |
| 28 | |
J. Richard Barnette | cab6be3 | 2014-07-17 13:07:39 -0700 | [diff] [blame] | 29 | class FAFTBase(test.test): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 30 | """The base class of FAFT classes. |
| 31 | |
| 32 | It launches the FAFTClient on DUT, such that the test can access its |
| 33 | firmware functions and interfaces. It also provides some methods to |
| 34 | handle the reboot mechanism, in order to ensure FAFTClient is still |
| 35 | connected after reboot. |
| 36 | """ |
| 37 | def initialize(self, host): |
| 38 | """Create a FAFTClient object and install the dependency.""" |
J. Richard Barnette | cab6be3 | 2014-07-17 13:07:39 -0700 | [diff] [blame] | 39 | self.servo = host.servo |
| 40 | self.servo.initialize_dut() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 41 | self._client = host |
| 42 | self._autotest_client = autotest.Autotest(self._client) |
| 43 | self._autotest_client.install() |
| 44 | self.faft_client = RPCProxy(host) |
Duncan Laurie | 10eb618 | 2014-10-07 15:39:05 -0700 | [diff] [blame] | 45 | self.lockfile = '/var/tmp/faft/lock' |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 46 | |
| 47 | def wait_for_client(self, install_deps=False, timeout=100): |
| 48 | """Wait for the client to come back online. |
| 49 | |
| 50 | New remote processes will be launched if their used flags are enabled. |
| 51 | |
| 52 | @param install_deps: If True, install Autotest dependency when ready. |
| 53 | @param timeout: Time in seconds to wait for the client SSH daemon to |
| 54 | come up. |
| 55 | @raise ConnectionError: Failed to connect DUT. |
| 56 | """ |
| 57 | if not self._client.wait_up(timeout): |
| 58 | raise ConnectionError() |
| 59 | if install_deps: |
| 60 | self._autotest_client.install() |
| 61 | # Check the FAFT client is avaiable. |
| 62 | self.faft_client.system.is_available() |
| 63 | |
| 64 | def wait_for_client_offline(self, timeout=60, orig_boot_id=None): |
| 65 | """Wait for the client to come offline. |
| 66 | |
| 67 | @param timeout: Time in seconds to wait the client to come offline. |
| 68 | @param orig_boot_id: A string containing the original boot id. |
| 69 | @raise ConnectionError: Failed to connect DUT. |
| 70 | """ |
| 71 | # When running against panther, we see that sometimes |
| 72 | # ping_wait_down() does not work correctly. There needs to |
| 73 | # be some investigation to the root cause. |
| 74 | # If we sleep for 120s before running get_boot_id(), it |
| 75 | # does succeed. But if we change this to ping_wait_down() |
| 76 | # there are implications on the wait time when running |
| 77 | # commands at the fw screens. |
| 78 | if not self._client.ping_wait_down(timeout): |
| 79 | if orig_boot_id and self._client.get_boot_id() != orig_boot_id: |
| 80 | logging.warn('Reboot done very quickly.') |
| 81 | return |
| 82 | raise ConnectionError() |
| 83 | |
| 84 | |
| 85 | class FirmwareTest(FAFTBase): |
| 86 | """ |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 87 | Base class that sets up helper objects/functions for firmware tests. |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 88 | |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 89 | TODO: add documentaion as the FAFT rework progresses. |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 90 | """ |
| 91 | version = 1 |
| 92 | |
| 93 | # Mapping of partition number of kernel and rootfs. |
| 94 | KERNEL_MAP = {'a':'2', 'b':'4', '2':'2', '4':'4', '3':'2', '5':'4'} |
| 95 | ROOTFS_MAP = {'a':'3', 'b':'5', '2':'3', '4':'5', '3':'3', '5':'5'} |
| 96 | OTHER_KERNEL_MAP = {'a':'4', 'b':'2', '2':'4', '4':'2', '3':'4', '5':'2'} |
| 97 | OTHER_ROOTFS_MAP = {'a':'5', 'b':'3', '2':'5', '4':'3', '3':'5', '5':'3'} |
| 98 | |
| 99 | CHROMEOS_MAGIC = "CHROMEOS" |
| 100 | CORRUPTED_MAGIC = "CORRUPTD" |
| 101 | |
| 102 | _SERVOD_LOG = '/var/log/servod.log' |
| 103 | |
| 104 | _ROOTFS_PARTITION_NUMBER = 3 |
| 105 | |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 106 | _backup_firmware_sha = () |
| 107 | _backup_kernel_sha = dict() |
| 108 | _backup_cgpt_attr = dict() |
| 109 | _backup_gbb_flags = None |
| 110 | _backup_dev_mode = None |
| 111 | |
| 112 | # Class level variable, keep track the states of one time setup. |
| 113 | # This variable is preserved across tests which inherit this class. |
| 114 | _global_setup_done = { |
| 115 | 'gbb_flags': False, |
| 116 | 'reimage': False, |
| 117 | 'usb_check': False, |
| 118 | } |
| 119 | |
| 120 | @classmethod |
| 121 | def check_setup_done(cls, label): |
| 122 | """Check if the given setup is done. |
| 123 | |
| 124 | @param label: The label of the setup. |
| 125 | """ |
| 126 | return cls._global_setup_done[label] |
| 127 | |
| 128 | @classmethod |
| 129 | def mark_setup_done(cls, label): |
| 130 | """Mark the given setup done. |
| 131 | |
| 132 | @param label: The label of the setup. |
| 133 | """ |
| 134 | cls._global_setup_done[label] = True |
| 135 | |
| 136 | @classmethod |
| 137 | def unmark_setup_done(cls, label): |
| 138 | """Mark the given setup not done. |
| 139 | |
| 140 | @param label: The label of the setup. |
| 141 | """ |
| 142 | cls._global_setup_done[label] = False |
| 143 | |
| 144 | def initialize(self, host, cmdline_args, ec_wp=None): |
| 145 | super(FirmwareTest, self).initialize(host) |
| 146 | self.run_id = str(uuid.uuid4()) |
| 147 | logging.info('FirmwareTest initialize begin (id=%s)', self.run_id) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 148 | # Parse arguments from command line |
| 149 | args = {} |
| 150 | self.power_control = host.POWER_CONTROL_RPM |
| 151 | for arg in cmdline_args: |
| 152 | match = re.search("^(\w+)=(.+)", arg) |
| 153 | if match: |
| 154 | args[match.group(1)] = match.group(2) |
| 155 | if 'power_control' in args: |
| 156 | self.power_control = args['power_control'] |
| 157 | if self.power_control not in host.POWER_CONTROL_VALID_ARGS: |
| 158 | raise error.TestError('Valid values for --args=power_control ' |
| 159 | 'are %s. But you entered wrong argument ' |
| 160 | 'as "%s".' |
| 161 | % (host.POWER_CONTROL_VALID_ARGS, |
| 162 | self.power_control)) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 163 | |
| 164 | self.faft_config = FAFTConfig( |
| 165 | self.faft_client.system.get_platform_name()) |
| 166 | self.checkers = FAFTCheckers(self, self.faft_client) |
| 167 | |
| 168 | if self.faft_config.chrome_ec: |
| 169 | self.ec = chrome_ec.ChromeEC(self.servo) |
| 170 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 171 | self._setup_uart_capture() |
| 172 | self._setup_servo_log() |
| 173 | self._record_system_info() |
Daisuke Nojiri | 682a6d6 | 2014-11-21 09:59:32 -0800 | [diff] [blame] | 174 | self.fw_vboot2 = self.faft_client.system.get_fw_vboot2() |
| 175 | logging.info('vboot version: %d', 2 if self.fw_vboot2 else 1) |
| 176 | if self.fw_vboot2: |
| 177 | self.faft_client.system.set_fw_try_next('A') |
| 178 | if self.faft_client.system.get_crossystem_value('mainfw_act') == 'B': |
| 179 | logging.info('mainfw_act is B. rebooting to set it A') |
| 180 | self.reboot_warm() |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 181 | self._setup_gbb_flags() |
| 182 | self._stop_service('update-engine') |
Duncan Laurie | 10eb618 | 2014-10-07 15:39:05 -0700 | [diff] [blame] | 183 | self._create_faft_lockfile() |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 184 | self._setup_ec_write_protect(ec_wp) |
Yusuf Mohsinally | 1b7a48b | 2014-05-12 19:25:35 -0700 | [diff] [blame] | 185 | # See chromium:239034 regarding needing this sync. |
Yusuf Mohsinally | 1bacc96 | 2014-08-14 11:37:32 -0700 | [diff] [blame] | 186 | self.blocking_sync() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 187 | logging.info('FirmwareTest initialize done (id=%s)', self.run_id) |
| 188 | |
| 189 | def cleanup(self): |
| 190 | """Autotest cleanup function.""" |
| 191 | # Unset state checker in case it's set by subclass |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 192 | logging.info('FirmwareTest cleaning up (id=%s)', self.run_id) |
| 193 | try: |
| 194 | self.faft_client.system.is_available() |
| 195 | except: |
| 196 | # Remote is not responding. Revive DUT so that subsequent tests |
| 197 | # don't fail. |
| 198 | self._restore_routine_from_timeout() |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 199 | self._restore_dev_mode() |
| 200 | self._restore_ec_write_protect() |
| 201 | self._restore_gbb_flags() |
| 202 | self._start_service('update-engine') |
Duncan Laurie | 10eb618 | 2014-10-07 15:39:05 -0700 | [diff] [blame] | 203 | self._remove_faft_lockfile() |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 204 | self._record_servo_log() |
| 205 | self._record_faft_client_log() |
| 206 | self._cleanup_uart_capture() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 207 | super(FirmwareTest, self).cleanup() |
| 208 | logging.info('FirmwareTest cleanup done (id=%s)', self.run_id) |
| 209 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 210 | def _record_system_info(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 211 | """Record some critical system info to the attr keyval. |
| 212 | |
| 213 | This info is used by generate_test_report and local_dash later. |
| 214 | """ |
| 215 | self.write_attr_keyval({ |
| 216 | 'fw_version': self.faft_client.ec.get_version(), |
| 217 | 'hwid': self.faft_client.system.get_crossystem_value('hwid'), |
| 218 | 'fwid': self.faft_client.system.get_crossystem_value('fwid'), |
| 219 | }) |
| 220 | |
| 221 | def invalidate_firmware_setup(self): |
| 222 | """Invalidate all firmware related setup state. |
| 223 | |
| 224 | This method is called when the firmware is re-flashed. It resets all |
| 225 | firmware related setup states so that the next test setup properly |
| 226 | again. |
| 227 | """ |
| 228 | self.unmark_setup_done('gbb_flags') |
| 229 | |
| 230 | def _retrieve_recovery_reason_from_trap(self): |
| 231 | """Try to retrieve the recovery reason from a trapped recovery screen. |
| 232 | |
| 233 | @return: The recovery_reason, 0 if any error. |
| 234 | """ |
| 235 | recovery_reason = 0 |
| 236 | logging.info('Try to retrieve recovery reason...') |
| 237 | if self.servo.get_usbkey_direction() == 'dut': |
| 238 | self.wait_fw_screen_and_plug_usb() |
| 239 | else: |
| 240 | self.servo.switch_usbkey('dut') |
| 241 | |
| 242 | try: |
| 243 | self.wait_for_client(install_deps=True) |
| 244 | lines = self.faft_client.system.run_shell_command_get_output( |
| 245 | 'crossystem recovery_reason') |
| 246 | recovery_reason = int(lines[0]) |
| 247 | logging.info('Got the recovery reason %d.', recovery_reason) |
| 248 | except ConnectionError: |
| 249 | logging.error('Failed to get the recovery reason due to connection ' |
| 250 | 'error.') |
| 251 | return recovery_reason |
| 252 | |
| 253 | def _reset_client(self): |
| 254 | """Reset client to a workable state. |
| 255 | |
| 256 | This method is called when the client is not responsive. It may be |
| 257 | caused by the following cases: |
| 258 | - halt on a firmware screen without timeout, e.g. REC_INSERT screen; |
| 259 | - corrupted firmware; |
| 260 | - corrutped OS image. |
| 261 | """ |
| 262 | # DUT may halt on a firmware screen. Try cold reboot. |
| 263 | logging.info('Try cold reboot...') |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 264 | self.reboot_cold_trigger() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 265 | self.wait_for_client_offline() |
| 266 | self.wait_dev_screen_and_ctrl_d() |
| 267 | try: |
| 268 | self.wait_for_client() |
| 269 | return |
| 270 | except ConnectionError: |
| 271 | logging.warn('Cold reboot doesn\'t help, still connection error.') |
| 272 | |
| 273 | # DUT may be broken by a corrupted firmware. Restore firmware. |
| 274 | # We assume the recovery boot still works fine. Since the recovery |
| 275 | # code is in RO region and all FAFT tests don't change the RO region |
| 276 | # except GBB. |
| 277 | if self.is_firmware_saved(): |
| 278 | self._ensure_client_in_recovery() |
| 279 | logging.info('Try restore the original firmware...') |
| 280 | if self.is_firmware_changed(): |
| 281 | try: |
| 282 | self.restore_firmware() |
| 283 | return |
| 284 | except ConnectionError: |
| 285 | logging.warn('Restoring firmware doesn\'t help, still ' |
| 286 | 'connection error.') |
| 287 | |
| 288 | # Perhaps it's kernel that's broken. Let's try restoring it. |
| 289 | if self.is_kernel_saved(): |
| 290 | self._ensure_client_in_recovery() |
| 291 | logging.info('Try restore the original kernel...') |
| 292 | if self.is_kernel_changed(): |
| 293 | try: |
| 294 | self.restore_kernel() |
| 295 | return |
| 296 | except ConnectionError: |
| 297 | logging.warn('Restoring kernel doesn\'t help, still ' |
| 298 | 'connection error.') |
| 299 | |
| 300 | # DUT may be broken by a corrupted OS image. Restore OS image. |
| 301 | self._ensure_client_in_recovery() |
| 302 | logging.info('Try restore the OS image...') |
| 303 | self.faft_client.system.run_shell_command('chromeos-install --yes') |
| 304 | self.sync_and_warm_reboot() |
| 305 | self.wait_for_client_offline() |
| 306 | self.wait_dev_screen_and_ctrl_d() |
| 307 | try: |
| 308 | self.wait_for_client(install_deps=True) |
| 309 | logging.info('Successfully restore OS image.') |
| 310 | return |
| 311 | except ConnectionError: |
| 312 | logging.warn('Restoring OS image doesn\'t help, still connection ' |
| 313 | 'error.') |
| 314 | |
| 315 | def _ensure_client_in_recovery(self): |
| 316 | """Ensure client in recovery boot; reboot into it if necessary. |
| 317 | |
| 318 | @raise TestError: if failed to boot the USB image. |
| 319 | """ |
| 320 | logging.info('Try boot into USB image...') |
| 321 | self.servo.switch_usbkey('host') |
| 322 | self.enable_rec_mode_and_reboot() |
| 323 | self.wait_fw_screen_and_plug_usb() |
| 324 | try: |
| 325 | self.wait_for_client(install_deps=True) |
| 326 | except ConnectionError: |
| 327 | raise error.TestError('Failed to boot the USB image.') |
| 328 | |
Yusuf Mohsinally | 64ee3a7 | 2014-06-26 10:24:27 -0700 | [diff] [blame] | 329 | def _restore_routine_from_timeout(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 330 | """A routine to try to restore the system from a timeout error. |
| 331 | |
| 332 | This method is called when FAFT failed to connect DUT after reboot. |
| 333 | |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 334 | @raise TestFail: This exception is already raised, with a decription |
| 335 | why it failed. |
| 336 | """ |
| 337 | # DUT is disconnected. Capture the UART output for debug. |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 338 | self._record_uart_capture() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 339 | |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 340 | # TODO(waihong@chromium.org): Implement replugging the Ethernet to |
| 341 | # identify if it is a network flaky. |
| 342 | |
| 343 | recovery_reason = self._retrieve_recovery_reason_from_trap() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 344 | |
| 345 | # Reset client to a workable state. |
| 346 | self._reset_client() |
| 347 | |
| 348 | # Raise the proper TestFail exception. |
Yusuf Mohsinally | 64ee3a7 | 2014-06-26 10:24:27 -0700 | [diff] [blame] | 349 | if recovery_reason: |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 350 | raise error.TestFail('Trapped in the recovery screen (reason: %d) ' |
| 351 | 'and timed out' % recovery_reason) |
| 352 | else: |
| 353 | raise error.TestFail('Timed out waiting for DUT reboot') |
| 354 | |
| 355 | def assert_test_image_in_usb_disk(self, usb_dev=None, install_shim=False): |
| 356 | """Assert an USB disk plugged-in on servo and a test image inside. |
| 357 | |
| 358 | @param usb_dev: A string of USB stick path on the host, like '/dev/sdc'. |
| 359 | If None, it is detected automatically. |
| 360 | @param install_shim: True to verify an install shim instead of a test |
| 361 | image. |
| 362 | @raise TestError: if USB disk not detected or not a test (install shim) |
| 363 | image. |
| 364 | """ |
| 365 | if self.check_setup_done('usb_check'): |
| 366 | return |
| 367 | if usb_dev: |
| 368 | assert self.servo.get_usbkey_direction() == 'host' |
| 369 | else: |
| 370 | self.servo.switch_usbkey('host') |
| 371 | usb_dev = self.servo.probe_host_usb_dev() |
| 372 | if not usb_dev: |
| 373 | raise error.TestError( |
| 374 | 'An USB disk should be plugged in the servo board.') |
| 375 | |
| 376 | rootfs = '%s%s' % (usb_dev, self._ROOTFS_PARTITION_NUMBER) |
| 377 | logging.info('usb dev is %s', usb_dev) |
| 378 | tmpd = self.servo.system_output('mktemp -d -t usbcheck.XXXX') |
| 379 | self.servo.system('mount -o ro %s %s' % (rootfs, tmpd)) |
| 380 | |
| 381 | if install_shim: |
| 382 | dir_list = self.servo.system_output('ls -a %s' % |
| 383 | os.path.join(tmpd, 'root')) |
| 384 | check_passed = '.factory_installer' in dir_list |
| 385 | else: |
| 386 | check_passed = self.servo.system_output( |
| 387 | 'grep -i "CHROMEOS_RELEASE_DESCRIPTION=.*test" %s' % |
| 388 | os.path.join(tmpd, 'etc/lsb-release'), |
| 389 | ignore_status=True) |
| 390 | for cmd in ('umount %s' % rootfs, 'sync', 'rm -rf %s' % tmpd): |
| 391 | self.servo.system(cmd) |
| 392 | |
| 393 | if not check_passed: |
| 394 | raise error.TestError( |
| 395 | 'No Chrome OS %s found on the USB flash plugged into servo' % |
Vic Yang | 8d348e0 | 2014-05-22 14:07:35 -0700 | [diff] [blame] | 396 | ('install shim' if install_shim else 'test')) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 397 | |
| 398 | self.mark_setup_done('usb_check') |
| 399 | |
| 400 | def setup_usbkey(self, usbkey, host=None, install_shim=False): |
| 401 | """Setup the USB disk for the test. |
| 402 | |
| 403 | It checks the setup of USB disk and a valid ChromeOS test image inside. |
| 404 | It also muxes the USB disk to either the host or DUT by request. |
| 405 | |
| 406 | @param usbkey: True if the USB disk is required for the test, False if |
| 407 | not required. |
| 408 | @param host: Optional, True to mux the USB disk to host, False to mux it |
| 409 | to DUT, default to do nothing. |
| 410 | @param install_shim: True to verify an install shim instead of a test |
| 411 | image. |
| 412 | """ |
| 413 | if usbkey: |
| 414 | self.assert_test_image_in_usb_disk(install_shim=install_shim) |
| 415 | elif host is None: |
| 416 | # USB disk is not required for the test. Better to mux it to host. |
| 417 | host = True |
| 418 | |
| 419 | if host is True: |
| 420 | self.servo.switch_usbkey('host') |
| 421 | elif host is False: |
| 422 | self.servo.switch_usbkey('dut') |
| 423 | |
| 424 | def get_usbdisk_path_on_dut(self): |
| 425 | """Get the path of the USB disk device plugged-in the servo on DUT. |
| 426 | |
| 427 | Returns: |
| 428 | A string representing USB disk path, like '/dev/sdb', or None if |
| 429 | no USB disk is found. |
| 430 | """ |
| 431 | cmd = 'ls -d /dev/s*[a-z]' |
| 432 | original_value = self.servo.get_usbkey_direction() |
| 433 | |
| 434 | # Make the dut unable to see the USB disk. |
| 435 | self.servo.switch_usbkey('off') |
| 436 | no_usb_set = set( |
| 437 | self.faft_client.system.run_shell_command_get_output(cmd)) |
| 438 | |
| 439 | # Make the dut able to see the USB disk. |
| 440 | self.servo.switch_usbkey('dut') |
| 441 | time.sleep(self.faft_config.between_usb_plug) |
| 442 | has_usb_set = set( |
| 443 | self.faft_client.system.run_shell_command_get_output(cmd)) |
| 444 | |
| 445 | # Back to its original value. |
| 446 | if original_value != self.servo.get_usbkey_direction(): |
| 447 | self.servo.switch_usbkey(original_value) |
| 448 | |
| 449 | diff_set = has_usb_set - no_usb_set |
| 450 | if len(diff_set) == 1: |
| 451 | return diff_set.pop() |
| 452 | else: |
| 453 | return None |
| 454 | |
Duncan Laurie | 10eb618 | 2014-10-07 15:39:05 -0700 | [diff] [blame] | 455 | def _create_faft_lockfile(self): |
| 456 | """Creates the FAFT lockfile.""" |
| 457 | logging.info('Creating FAFT lockfile...') |
| 458 | command = 'touch %s' % (self.lockfile) |
| 459 | self.faft_client.system.run_shell_command(command) |
| 460 | |
| 461 | def _remove_faft_lockfile(self): |
| 462 | """Removes the FAFT lockfile.""" |
| 463 | logging.info('Removing FAFT lockfile...') |
| 464 | command = 'rm -f %s' % (self.lockfile) |
| 465 | self.faft_client.system.run_shell_command(command) |
| 466 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 467 | def _stop_service(self, service): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 468 | """Stops a upstart service on the client. |
| 469 | |
| 470 | @param service: The name of the upstart service. |
| 471 | """ |
| 472 | logging.info('Stopping %s...', service) |
| 473 | command = 'status %s | grep stop || stop %s' % (service, service) |
| 474 | self.faft_client.system.run_shell_command(command) |
| 475 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 476 | def _start_service(self, service): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 477 | """Starts a upstart service on the client. |
| 478 | |
| 479 | @param service: The name of the upstart service. |
| 480 | """ |
| 481 | logging.info('Starting %s...', service) |
| 482 | command = 'status %s | grep start || start %s' % (service, service) |
| 483 | self.faft_client.system.run_shell_command(command) |
| 484 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 485 | def _write_gbb_flags(self, new_flags): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 486 | """Write the GBB flags to the current firmware. |
| 487 | |
| 488 | @param new_flags: The flags to write. |
| 489 | """ |
| 490 | gbb_flags = self.faft_client.bios.get_gbb_flags() |
| 491 | if gbb_flags == new_flags: |
| 492 | return |
| 493 | logging.info('Changing GBB flags from 0x%x to 0x%x.', |
| 494 | gbb_flags, new_flags) |
| 495 | self.faft_client.system.run_shell_command( |
| 496 | '/usr/share/vboot/bin/set_gbb_flags.sh 0x%x' % new_flags) |
| 497 | self.faft_client.bios.reload() |
| 498 | # If changing FORCE_DEV_SWITCH_ON flag, reboot to get a clear state |
| 499 | if ((gbb_flags ^ new_flags) & vboot.GBB_FLAG_FORCE_DEV_SWITCH_ON): |
Ryan Lin | 5bee610 | 2014-09-16 13:17:02 -0700 | [diff] [blame] | 500 | self.sync_and_warm_reboot() |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 501 | self.wait_dev_screen_and_ctrl_d() |
Vic Yang | 8d23f24 | 2014-05-30 10:25:50 -0700 | [diff] [blame] | 502 | self.wait_for_kernel_up() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 503 | |
| 504 | def clear_set_gbb_flags(self, clear_mask, set_mask): |
| 505 | """Clear and set the GBB flags in the current flashrom. |
| 506 | |
| 507 | @param clear_mask: A mask of flags to be cleared. |
| 508 | @param set_mask: A mask of flags to be set. |
| 509 | """ |
| 510 | gbb_flags = self.faft_client.bios.get_gbb_flags() |
| 511 | new_flags = gbb_flags & ctypes.c_uint32(~clear_mask).value | set_mask |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 512 | self._write_gbb_flags(new_flags) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 513 | |
| 514 | def check_ec_capability(self, required_cap=None, suppress_warning=False): |
| 515 | """Check if current platform has required EC capabilities. |
| 516 | |
| 517 | @param required_cap: A list containing required EC capabilities. Pass in |
| 518 | None to only check for presence of Chrome EC. |
| 519 | @param suppress_warning: True to suppress any warning messages. |
| 520 | @return: True if requirements are met. Otherwise, False. |
| 521 | """ |
| 522 | if not self.faft_config.chrome_ec: |
| 523 | if not suppress_warning: |
| 524 | logging.warn('Requires Chrome EC to run this test.') |
| 525 | return False |
| 526 | |
| 527 | if not required_cap: |
| 528 | return True |
| 529 | |
| 530 | for cap in required_cap: |
| 531 | if cap not in self.faft_config.ec_capability: |
| 532 | if not suppress_warning: |
| 533 | logging.warn('Requires EC capability "%s" to run this ' |
| 534 | 'test.', cap) |
| 535 | return False |
| 536 | |
| 537 | return True |
| 538 | |
| 539 | def check_root_part_on_non_recovery(self, part): |
| 540 | """Check the partition number of root device and on normal/dev boot. |
| 541 | |
| 542 | @param part: A string of partition number, e.g.'3'. |
| 543 | @return: True if the root device matched and on normal/dev boot; |
| 544 | otherwise, False. |
| 545 | """ |
| 546 | return self.checkers.root_part_checker(part) and \ |
| 547 | self.checkers.crossystem_checker({ |
| 548 | 'mainfw_type': ('normal', 'developer'), |
| 549 | }) |
| 550 | |
| 551 | def _join_part(self, dev, part): |
| 552 | """Return a concatenated string of device and partition number. |
| 553 | |
| 554 | @param dev: A string of device, e.g.'/dev/sda'. |
| 555 | @param part: A string of partition number, e.g.'3'. |
| 556 | @return: A concatenated string of device and partition number, |
| 557 | e.g.'/dev/sda3'. |
| 558 | |
| 559 | >>> seq = FirmwareTest() |
| 560 | >>> seq._join_part('/dev/sda', '3') |
| 561 | '/dev/sda3' |
| 562 | >>> seq._join_part('/dev/mmcblk0', '2') |
| 563 | '/dev/mmcblk0p2' |
| 564 | """ |
| 565 | if 'mmcblk' in dev: |
| 566 | return dev + 'p' + part |
| 567 | else: |
| 568 | return dev + part |
| 569 | |
| 570 | def copy_kernel_and_rootfs(self, from_part, to_part): |
| 571 | """Copy kernel and rootfs from from_part to to_part. |
| 572 | |
| 573 | @param from_part: A string of partition number to be copied from. |
| 574 | @param to_part: A string of partition number to be copied to. |
| 575 | """ |
| 576 | root_dev = self.faft_client.system.get_root_dev() |
| 577 | logging.info('Copying kernel from %s to %s. Please wait...', |
| 578 | from_part, to_part) |
| 579 | self.faft_client.system.run_shell_command('dd if=%s of=%s bs=4M' % |
| 580 | (self._join_part(root_dev, self.KERNEL_MAP[from_part]), |
| 581 | self._join_part(root_dev, self.KERNEL_MAP[to_part]))) |
| 582 | logging.info('Copying rootfs from %s to %s. Please wait...', |
| 583 | from_part, to_part) |
| 584 | self.faft_client.system.run_shell_command('dd if=%s of=%s bs=4M' % |
| 585 | (self._join_part(root_dev, self.ROOTFS_MAP[from_part]), |
| 586 | self._join_part(root_dev, self.ROOTFS_MAP[to_part]))) |
| 587 | |
| 588 | def ensure_kernel_boot(self, part): |
| 589 | """Ensure the request kernel boot. |
| 590 | |
| 591 | If not, it duplicates the current kernel to the requested kernel |
| 592 | and sets the requested higher priority to ensure it boot. |
| 593 | |
| 594 | @param part: A string of kernel partition number or 'a'/'b'. |
| 595 | """ |
| 596 | if not self.checkers.root_part_checker(part): |
| 597 | if self.faft_client.kernel.diff_a_b(): |
| 598 | self.copy_kernel_and_rootfs( |
| 599 | from_part=self.OTHER_KERNEL_MAP[part], |
| 600 | to_part=part) |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 601 | self.reset_and_prioritize_kernel(part) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 602 | |
| 603 | def set_hardware_write_protect(self, enable): |
| 604 | """Set hardware write protect pin. |
| 605 | |
| 606 | @param enable: True if asserting write protect pin. Otherwise, False. |
| 607 | """ |
| 608 | self.servo.set('fw_wp_vref', self.faft_config.wp_voltage) |
| 609 | self.servo.set('fw_wp_en', 'on') |
| 610 | self.servo.set('fw_wp', 'on' if enable else 'off') |
| 611 | |
| 612 | def set_ec_write_protect_and_reboot(self, enable): |
| 613 | """Set EC write protect status and reboot to take effect. |
| 614 | |
| 615 | The write protect state is only activated if both hardware write |
| 616 | protect pin is asserted and software write protect flag is set. |
| 617 | This method asserts/deasserts hardware write protect pin first, and |
| 618 | set corresponding EC software write protect flag. |
| 619 | |
| 620 | If the device uses non-Chrome EC, set the software write protect via |
| 621 | flashrom. |
| 622 | |
| 623 | If the device uses Chrome EC, a reboot is required for write protect |
| 624 | to take effect. Since the software write protect flag cannot be unset |
| 625 | if hardware write protect pin is asserted, we need to deasserted the |
| 626 | pin first if we are deactivating write protect. Similarly, a reboot |
| 627 | is required before we can modify the software flag. |
| 628 | |
| 629 | @param enable: True if activating EC write protect. Otherwise, False. |
| 630 | """ |
| 631 | self.set_hardware_write_protect(enable) |
| 632 | if self.faft_config.chrome_ec: |
| 633 | self.set_chrome_ec_write_protect_and_reboot(enable) |
| 634 | else: |
| 635 | self.faft_client.ec.set_write_protect(enable) |
| 636 | self.sync_and_warm_reboot() |
| 637 | |
| 638 | def set_chrome_ec_write_protect_and_reboot(self, enable): |
| 639 | """Set Chrome EC write protect status and reboot to take effect. |
| 640 | |
| 641 | @param enable: True if activating EC write protect. Otherwise, False. |
| 642 | """ |
| 643 | if enable: |
| 644 | # Set write protect flag and reboot to take effect. |
| 645 | self.ec.set_flash_write_protect(enable) |
| 646 | self.sync_and_ec_reboot() |
| 647 | else: |
| 648 | # Reboot after deasserting hardware write protect pin to deactivate |
| 649 | # write protect. And then remove software write protect flag. |
| 650 | self.sync_and_ec_reboot() |
| 651 | self.ec.set_flash_write_protect(enable) |
| 652 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 653 | def _setup_ec_write_protect(self, ec_wp): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 654 | """Setup for EC write-protection. |
| 655 | |
| 656 | It makes sure the EC in the requested write-protection state. If not, it |
| 657 | flips the state. Flipping the write-protection requires DUT reboot. |
| 658 | |
| 659 | @param ec_wp: True to request EC write-protected; False to request EC |
| 660 | not write-protected; None to do nothing. |
| 661 | """ |
| 662 | if ec_wp is None: |
| 663 | self._old_ec_wp = None |
| 664 | return |
| 665 | self._old_ec_wp = self.checkers.crossystem_checker({'wpsw_boot': '1'}) |
| 666 | if ec_wp != self._old_ec_wp: |
| 667 | logging.info('The test required EC is %swrite-protected. Reboot ' |
| 668 | 'and flip the state.', '' if ec_wp else 'not ') |
Yusuf Mohsinally | cae7902 | 2014-05-14 14:44:39 -0700 | [diff] [blame] | 669 | self.do_reboot_action((self.set_ec_write_protect_and_reboot, ec_wp)) |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 670 | self.wait_dev_screen_and_ctrl_d() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 671 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 672 | def _restore_ec_write_protect(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 673 | """Restore the original EC write-protection.""" |
| 674 | if (not hasattr(self, '_old_ec_wp')) or (self._old_ec_wp is None): |
| 675 | return |
| 676 | if not self.checkers.crossystem_checker( |
| 677 | {'wpsw_boot': '1' if self._old_ec_wp else '0'}): |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 678 | logging.info('Restore original EC write protection and reboot.') |
Yusuf Mohsinally | cae7902 | 2014-05-14 14:44:39 -0700 | [diff] [blame] | 679 | self.do_reboot_action((self.set_ec_write_protect_and_reboot, |
| 680 | self._old_ec_wp)) |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 681 | self.wait_dev_screen_and_ctrl_d() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 682 | |
| 683 | def press_ctrl_d(self, press_secs=''): |
| 684 | """Send Ctrl-D key to DUT. |
| 685 | |
| 686 | @param press_secs : Str. Time to press key. |
| 687 | """ |
| 688 | self.servo.ctrl_d(press_secs) |
| 689 | |
| 690 | def press_ctrl_u(self): |
| 691 | """Send Ctrl-U key to DUT. |
| 692 | |
| 693 | @raise TestError: if a non-Chrome EC device or no Ctrl-U command given |
| 694 | on a no-build-in-keyboard device. |
| 695 | """ |
| 696 | if not self.faft_config.has_keyboard: |
| 697 | self.servo.ctrl_u() |
| 698 | elif self.check_ec_capability(['keyboard'], suppress_warning=True): |
| 699 | self.ec.key_down('<ctrl_l>') |
| 700 | self.ec.key_down('u') |
| 701 | self.ec.key_up('u') |
| 702 | self.ec.key_up('<ctrl_l>') |
| 703 | elif self.faft_config.has_keyboard: |
| 704 | raise error.TestError( |
| 705 | "Can't send Ctrl-U to DUT without using Chrome EC.") |
| 706 | else: |
| 707 | raise error.TestError( |
| 708 | "Should specify the ctrl_u_cmd argument.") |
| 709 | |
| 710 | def press_enter(self, press_secs=''): |
| 711 | """Send Enter key to DUT. |
| 712 | |
| 713 | @param press_secs: Seconds of holding the key. |
| 714 | """ |
| 715 | self.servo.enter_key(press_secs) |
| 716 | |
| 717 | def wait_dev_screen_and_ctrl_d(self): |
| 718 | """Wait for firmware warning screen and press Ctrl-D.""" |
| 719 | time.sleep(self.faft_config.dev_screen) |
| 720 | self.press_ctrl_d() |
| 721 | |
| 722 | def wait_fw_screen_and_ctrl_d(self): |
| 723 | """Wait for firmware warning screen and press Ctrl-D.""" |
| 724 | time.sleep(self.faft_config.firmware_screen) |
| 725 | self.press_ctrl_d() |
| 726 | |
| 727 | def wait_fw_screen_and_ctrl_u(self): |
| 728 | """Wait for firmware warning screen and press Ctrl-U.""" |
| 729 | time.sleep(self.faft_config.firmware_screen) |
| 730 | self.press_ctrl_u() |
| 731 | |
| 732 | def wait_fw_screen_and_trigger_recovery(self, need_dev_transition=False): |
| 733 | """Wait for firmware warning screen and trigger recovery boot. |
| 734 | |
| 735 | @param need_dev_transition: True when needs dev mode transition, only |
| 736 | for Alex/ZGB. |
| 737 | """ |
| 738 | time.sleep(self.faft_config.firmware_screen) |
| 739 | |
| 740 | # Pressing Enter for too long triggers a second key press. |
| 741 | # Let's press it without delay |
| 742 | self.press_enter(press_secs=0) |
| 743 | |
| 744 | # For Alex/ZGB, there is a dev warning screen in text mode. |
| 745 | # Skip it by pressing Ctrl-D. |
| 746 | if need_dev_transition: |
| 747 | time.sleep(self.faft_config.legacy_text_screen) |
| 748 | self.press_ctrl_d() |
| 749 | |
| 750 | def wait_fw_screen_and_unplug_usb(self): |
| 751 | """Wait for firmware warning screen and then unplug the servo USB.""" |
| 752 | time.sleep(self.faft_config.load_usb) |
| 753 | self.servo.switch_usbkey('host') |
| 754 | time.sleep(self.faft_config.between_usb_plug) |
| 755 | |
| 756 | def wait_fw_screen_and_plug_usb(self): |
| 757 | """Wait for firmware warning screen and then unplug and plug the USB.""" |
| 758 | self.wait_fw_screen_and_unplug_usb() |
| 759 | self.servo.switch_usbkey('dut') |
| 760 | |
| 761 | def wait_fw_screen_and_press_power(self): |
| 762 | """Wait for firmware warning screen and press power button.""" |
| 763 | time.sleep(self.faft_config.firmware_screen) |
| 764 | # While the firmware screen, the power button probing loop sleeps |
| 765 | # 0.25 second on every scan. Use the normal delay (1.2 second) for |
| 766 | # power press. |
| 767 | self.servo.power_normal_press() |
| 768 | |
| 769 | def wait_longer_fw_screen_and_press_power(self): |
| 770 | """Wait for firmware screen without timeout and press power button.""" |
| 771 | time.sleep(self.faft_config.dev_screen_timeout) |
| 772 | self.wait_fw_screen_and_press_power() |
| 773 | |
| 774 | def wait_fw_screen_and_close_lid(self): |
| 775 | """Wait for firmware warning screen and close lid.""" |
| 776 | time.sleep(self.faft_config.firmware_screen) |
| 777 | self.servo.lid_close() |
| 778 | |
| 779 | def wait_longer_fw_screen_and_close_lid(self): |
| 780 | """Wait for firmware screen without timeout and close lid.""" |
| 781 | time.sleep(self.faft_config.firmware_screen) |
| 782 | self.wait_fw_screen_and_close_lid() |
| 783 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 784 | def _setup_uart_capture(self): |
Duncan Laurie | af61c1f | 2014-10-07 15:35:18 -0700 | [diff] [blame] | 785 | """Setup the CPU/EC/PD UART capture.""" |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 786 | self.cpu_uart_file = os.path.join(self.resultsdir, 'cpu_uart.txt') |
| 787 | self.servo.set('cpu_uart_capture', 'on') |
| 788 | self.ec_uart_file = None |
Duncan Laurie | af61c1f | 2014-10-07 15:35:18 -0700 | [diff] [blame] | 789 | self.usbpd_uart_file = None |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 790 | if self.faft_config.chrome_ec: |
| 791 | try: |
| 792 | self.servo.set('ec_uart_capture', 'on') |
| 793 | self.ec_uart_file = os.path.join(self.resultsdir, 'ec_uart.txt') |
| 794 | except error.TestFail as e: |
| 795 | if 'No control named' in str(e): |
| 796 | logging.warn('The servod is too old that ec_uart_capture ' |
| 797 | 'not supported.') |
Duncan Laurie | af61c1f | 2014-10-07 15:35:18 -0700 | [diff] [blame] | 798 | # Log separate PD console if supported |
| 799 | if self.check_ec_capability(['usbpd_uart'], suppress_warning=True): |
| 800 | try: |
| 801 | self.servo.set('usbpd_uart_capture', 'on') |
| 802 | self.usbpd_uart_file = os.path.join(self.resultsdir, |
| 803 | 'usbpd_uart.txt') |
| 804 | except error.TestFail as e: |
| 805 | if 'No control named' in str(e): |
| 806 | logging.warn('The servod is too old that ' |
| 807 | 'usbpd_uart_capture is not supported.') |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 808 | else: |
| 809 | logging.info('Not a Google EC, cannot capture ec console output.') |
| 810 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 811 | def _record_uart_capture(self): |
Duncan Laurie | af61c1f | 2014-10-07 15:35:18 -0700 | [diff] [blame] | 812 | """Record the CPU/EC/PD UART output stream to files.""" |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 813 | if self.cpu_uart_file: |
| 814 | with open(self.cpu_uart_file, 'a') as f: |
| 815 | f.write(ast.literal_eval(self.servo.get('cpu_uart_stream'))) |
| 816 | if self.ec_uart_file and self.faft_config.chrome_ec: |
| 817 | with open(self.ec_uart_file, 'a') as f: |
| 818 | f.write(ast.literal_eval(self.servo.get('ec_uart_stream'))) |
Duncan Laurie | af61c1f | 2014-10-07 15:35:18 -0700 | [diff] [blame] | 819 | if (self.usbpd_uart_file and self.faft_config.chrome_ec and |
| 820 | self.check_ec_capability(['usbpd_uart'], suppress_warning=True)): |
| 821 | with open(self.usbpd_uart_file, 'a') as f: |
| 822 | f.write(ast.literal_eval(self.servo.get('usbpd_uart_stream'))) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 823 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 824 | def _cleanup_uart_capture(self): |
Duncan Laurie | af61c1f | 2014-10-07 15:35:18 -0700 | [diff] [blame] | 825 | """Cleanup the CPU/EC/PD UART capture.""" |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 826 | # Flush the remaining UART output. |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 827 | self._record_uart_capture() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 828 | self.servo.set('cpu_uart_capture', 'off') |
| 829 | if self.ec_uart_file and self.faft_config.chrome_ec: |
| 830 | self.servo.set('ec_uart_capture', 'off') |
Duncan Laurie | af61c1f | 2014-10-07 15:35:18 -0700 | [diff] [blame] | 831 | if (self.usbpd_uart_file and self.faft_config.chrome_ec and |
| 832 | self.check_ec_capability(['usbpd_uart'], suppress_warning=True)): |
| 833 | self.servo.set('usbpd_uart_capture', 'off') |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 834 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 835 | def _fetch_servo_log(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 836 | """Fetch the servo log.""" |
| 837 | cmd = '[ -e %s ] && cat %s || echo NOTFOUND' % ((self._SERVOD_LOG,) * 2) |
| 838 | servo_log = self.servo.system_output(cmd) |
| 839 | return None if servo_log == 'NOTFOUND' else servo_log |
| 840 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 841 | def _setup_servo_log(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 842 | """Setup the servo log capturing.""" |
| 843 | self.servo_log_original_len = -1 |
| 844 | if self.servo.is_localhost(): |
| 845 | # No servo log recorded when servod runs locally. |
| 846 | return |
| 847 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 848 | servo_log = self._fetch_servo_log() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 849 | if servo_log: |
| 850 | self.servo_log_original_len = len(servo_log) |
| 851 | else: |
| 852 | logging.warn('Servo log file not found.') |
| 853 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 854 | def _record_servo_log(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 855 | """Record the servo log to the results directory.""" |
| 856 | if self.servo_log_original_len != -1: |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 857 | servo_log = self._fetch_servo_log() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 858 | servo_log_file = os.path.join(self.resultsdir, 'servod.log') |
| 859 | with open(servo_log_file, 'a') as f: |
| 860 | f.write(servo_log[self.servo_log_original_len:]) |
| 861 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 862 | def _record_faft_client_log(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 863 | """Record the faft client log to the results directory.""" |
| 864 | client_log = self.faft_client.system.dump_log(True) |
| 865 | client_log_file = os.path.join(self.resultsdir, 'faft_client.log') |
| 866 | with open(client_log_file, 'w') as f: |
| 867 | f.write(client_log) |
| 868 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 869 | def _setup_gbb_flags(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 870 | """Setup the GBB flags for FAFT test.""" |
| 871 | if self.faft_config.gbb_version < 1.1: |
| 872 | logging.info('Skip modifying GBB on versions older than 1.1.') |
| 873 | return |
| 874 | |
| 875 | if self.check_setup_done('gbb_flags'): |
| 876 | return |
| 877 | |
| 878 | self._backup_gbb_flags = self.faft_client.bios.get_gbb_flags() |
| 879 | |
| 880 | logging.info('Set proper GBB flags for test.') |
| 881 | self.clear_set_gbb_flags(vboot.GBB_FLAG_DEV_SCREEN_SHORT_DELAY | |
| 882 | vboot.GBB_FLAG_FORCE_DEV_SWITCH_ON | |
| 883 | vboot.GBB_FLAG_FORCE_DEV_BOOT_USB | |
| 884 | vboot.GBB_FLAG_DISABLE_FW_ROLLBACK_CHECK, |
| 885 | vboot.GBB_FLAG_ENTER_TRIGGERS_TONORM | |
| 886 | vboot.GBB_FLAG_FAFT_KEY_OVERIDE) |
| 887 | self.mark_setup_done('gbb_flags') |
| 888 | |
| 889 | def drop_backup_gbb_flags(self): |
| 890 | """Drops the backup GBB flags. |
| 891 | |
| 892 | This can be used when a test intends to permanently change GBB flags. |
| 893 | """ |
| 894 | self._backup_gbb_flags = None |
| 895 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 896 | def _restore_gbb_flags(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 897 | """Restore GBB flags to their original state.""" |
| 898 | if not self._backup_gbb_flags: |
| 899 | return |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 900 | self._write_gbb_flags(self._backup_gbb_flags) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 901 | self.unmark_setup_done('gbb_flags') |
| 902 | |
| 903 | def setup_tried_fwb(self, tried_fwb): |
| 904 | """Setup for fw B tried state. |
| 905 | |
| 906 | It makes sure the system in the requested fw B tried state. If not, it |
| 907 | tries to do so. |
| 908 | |
| 909 | @param tried_fwb: True if requested in tried_fwb=1; |
| 910 | False if tried_fwb=0. |
| 911 | """ |
| 912 | if tried_fwb: |
| 913 | if not self.checkers.crossystem_checker({'tried_fwb': '1'}): |
| 914 | logging.info( |
| 915 | 'Firmware is not booted with tried_fwb. Reboot into it.') |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 916 | self.faft_client.system.set_try_fw_b() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 917 | else: |
| 918 | if not self.checkers.crossystem_checker({'tried_fwb': '0'}): |
| 919 | logging.info( |
| 920 | 'Firmware is booted with tried_fwb. Reboot to clear.') |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 921 | |
| 922 | def power_on(self): |
| 923 | """Switch DUT AC power on.""" |
| 924 | self._client.power_on(self.power_control) |
| 925 | |
| 926 | def power_off(self): |
| 927 | """Switch DUT AC power off.""" |
| 928 | self._client.power_off(self.power_control) |
| 929 | |
| 930 | def power_cycle(self): |
| 931 | """Power cycle DUT AC power.""" |
| 932 | self._client.power_cycle(self.power_control) |
| 933 | |
| 934 | def enable_rec_mode_and_reboot(self): |
| 935 | """Switch to rec mode and reboot. |
| 936 | |
| 937 | This method emulates the behavior of the old physical recovery switch, |
| 938 | i.e. switch ON + reboot + switch OFF, and the new keyboard controlled |
| 939 | recovery mode, i.e. just press Power + Esc + Refresh. |
| 940 | """ |
Ryan Lin | 5bee610 | 2014-09-16 13:17:02 -0700 | [diff] [blame] | 941 | self.blocking_sync() |
J. Richard Barnette | a57ff84 | 2014-06-05 10:00:31 -0700 | [diff] [blame] | 942 | psc = self.servo.get_power_state_controller() |
| 943 | psc.power_off() |
| 944 | psc.power_on(psc.REC_ON) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 945 | |
| 946 | def enable_dev_mode_and_reboot(self): |
| 947 | """Switch to developer mode and reboot.""" |
| 948 | if self.faft_config.keyboard_dev: |
| 949 | self.enable_keyboard_dev_mode() |
| 950 | else: |
| 951 | self.servo.enable_development_mode() |
| 952 | self.faft_client.system.run_shell_command( |
| 953 | 'chromeos-firmwareupdate --mode todev && reboot') |
| 954 | |
| 955 | def enable_normal_mode_and_reboot(self): |
| 956 | """Switch to normal mode and reboot.""" |
| 957 | if self.faft_config.keyboard_dev: |
| 958 | self.disable_keyboard_dev_mode() |
| 959 | else: |
| 960 | self.servo.disable_development_mode() |
| 961 | self.faft_client.system.run_shell_command( |
| 962 | 'chromeos-firmwareupdate --mode tonormal && reboot') |
| 963 | |
| 964 | def wait_fw_screen_and_switch_keyboard_dev_mode(self, dev): |
| 965 | """Wait for firmware screen and then switch into or out of dev mode. |
| 966 | |
| 967 | @param dev: True if switching into dev mode. Otherwise, False. |
| 968 | """ |
| 969 | time.sleep(self.faft_config.firmware_screen) |
| 970 | if dev: |
| 971 | self.press_ctrl_d() |
| 972 | time.sleep(self.faft_config.confirm_screen) |
| 973 | if self.faft_config.rec_button_dev_switch: |
| 974 | logging.info('RECOVERY button pressed to switch to dev mode') |
| 975 | self.servo.set('rec_mode', 'on') |
| 976 | time.sleep(self.faft_config.hold_cold_reset) |
| 977 | self.servo.set('rec_mode', 'off') |
| 978 | else: |
| 979 | logging.info('ENTER pressed to switch to dev mode') |
| 980 | self.press_enter() |
| 981 | else: |
| 982 | self.press_enter() |
| 983 | time.sleep(self.faft_config.confirm_screen) |
| 984 | self.press_enter() |
| 985 | |
| 986 | def enable_keyboard_dev_mode(self): |
| 987 | """Enable keyboard controlled developer mode""" |
| 988 | logging.info("Enabling keyboard controlled developer mode") |
| 989 | # Plug out USB disk for preventing recovery boot without warning |
| 990 | self.servo.switch_usbkey('host') |
| 991 | # Rebooting EC with rec mode on. Should power on AP. |
| 992 | self.enable_rec_mode_and_reboot() |
| 993 | self.wait_for_client_offline() |
| 994 | self.wait_fw_screen_and_switch_keyboard_dev_mode(dev=True) |
| 995 | |
| 996 | # TODO (crosbug.com/p/16231) remove this conditional completely if/when |
| 997 | # issue is resolved. |
| 998 | if self.faft_config.platform == 'Parrot': |
| 999 | self.wait_for_client_offline() |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1000 | self.reboot_cold_trigger() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1001 | |
| 1002 | def disable_keyboard_dev_mode(self): |
| 1003 | """Disable keyboard controlled developer mode""" |
| 1004 | logging.info("Disabling keyboard controlled developer mode") |
| 1005 | if (not self.faft_config.chrome_ec and |
| 1006 | not self.faft_config.broken_rec_mode): |
| 1007 | self.servo.disable_recovery_mode() |
Ryan Lin | 5bee610 | 2014-09-16 13:17:02 -0700 | [diff] [blame] | 1008 | self.sync_and_cold_reboot() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1009 | self.wait_for_client_offline() |
| 1010 | self.wait_fw_screen_and_switch_keyboard_dev_mode(dev=False) |
| 1011 | |
| 1012 | def setup_dev_mode(self, dev_mode): |
| 1013 | """Setup for development mode. |
| 1014 | |
| 1015 | It makes sure the system in the requested normal/dev mode. If not, it |
| 1016 | tries to do so. |
| 1017 | |
| 1018 | @param dev_mode: True if requested in dev mode; False if normal mode. |
| 1019 | """ |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1020 | if dev_mode: |
| 1021 | if (not self.faft_config.keyboard_dev and |
| 1022 | not self.checkers.crossystem_checker({'devsw_cur': '1'})): |
| 1023 | logging.info('Dev switch is not on. Now switch it on.') |
| 1024 | self.servo.enable_development_mode() |
| 1025 | if not self.checkers.crossystem_checker({'devsw_boot': '1', |
| 1026 | 'mainfw_type': 'developer'}): |
| 1027 | logging.info('System is not in dev mode. Reboot into it.') |
| 1028 | if self._backup_dev_mode is None: |
| 1029 | self._backup_dev_mode = False |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1030 | if self.faft_config.keyboard_dev: |
| 1031 | self.faft_client.system.run_shell_command( |
| 1032 | 'chromeos-firmwareupdate --mode todev && reboot') |
| 1033 | self.do_reboot_action(self.enable_keyboard_dev_mode) |
Vic Yang | 9887e6f | 2014-06-03 11:11:30 -0700 | [diff] [blame] | 1034 | self.wait_dev_screen_and_ctrl_d() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1035 | else: |
| 1036 | if (not self.faft_config.keyboard_dev and |
| 1037 | not self.checkers.crossystem_checker({'devsw_cur': '0'})): |
| 1038 | logging.info('Dev switch is not off. Now switch it off.') |
| 1039 | self.servo.disable_development_mode() |
| 1040 | if not self.checkers.crossystem_checker({'devsw_boot': '0', |
| 1041 | 'mainfw_type': 'normal'}): |
| 1042 | logging.info('System is not in normal mode. Reboot into it.') |
| 1043 | if self._backup_dev_mode is None: |
| 1044 | self._backup_dev_mode = True |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1045 | if self.faft_config.keyboard_dev: |
| 1046 | self.faft_client.system.run_shell_command( |
| 1047 | 'chromeos-firmwareupdate --mode tonormal && reboot') |
| 1048 | self.do_reboot_action(self.disable_keyboard_dev_mode) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1049 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 1050 | def _restore_dev_mode(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1051 | """Restores original dev mode status if it has changed.""" |
| 1052 | if self._backup_dev_mode is not None: |
| 1053 | self.setup_dev_mode(self._backup_dev_mode) |
| 1054 | self._backup_dev_mode = None |
| 1055 | |
| 1056 | def setup_rw_boot(self, section='a'): |
| 1057 | """Make sure firmware is in RW-boot mode. |
| 1058 | |
| 1059 | If the given firmware section is in RO-boot mode, turn off the RO-boot |
| 1060 | flag and reboot DUT into RW-boot mode. |
| 1061 | |
| 1062 | @param section: A firmware section, either 'a' or 'b'. |
| 1063 | """ |
| 1064 | flags = self.faft_client.bios.get_preamble_flags(section) |
| 1065 | if flags & vboot.PREAMBLE_USE_RO_NORMAL: |
| 1066 | flags = flags ^ vboot.PREAMBLE_USE_RO_NORMAL |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1067 | self.faft_client.bios.set_preamble_flags(section, flags) |
| 1068 | self.reboot_warm() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1069 | |
| 1070 | def setup_kernel(self, part): |
| 1071 | """Setup for kernel test. |
| 1072 | |
| 1073 | It makes sure both kernel A and B bootable and the current boot is |
| 1074 | the requested kernel part. |
| 1075 | |
| 1076 | @param part: A string of kernel partition number or 'a'/'b'. |
| 1077 | """ |
| 1078 | self.ensure_kernel_boot(part) |
| 1079 | logging.info('Checking the integrity of kernel B and rootfs B...') |
| 1080 | if (self.faft_client.kernel.diff_a_b() or |
| 1081 | not self.faft_client.rootfs.verify_rootfs('B')): |
| 1082 | logging.info('Copying kernel and rootfs from A to B...') |
| 1083 | self.copy_kernel_and_rootfs(from_part=part, |
| 1084 | to_part=self.OTHER_KERNEL_MAP[part]) |
| 1085 | self.reset_and_prioritize_kernel(part) |
| 1086 | |
| 1087 | def reset_and_prioritize_kernel(self, part): |
| 1088 | """Make the requested partition highest priority. |
| 1089 | |
| 1090 | This function also reset kerenl A and B to bootable. |
| 1091 | |
| 1092 | @param part: A string of partition number to be prioritized. |
| 1093 | """ |
| 1094 | root_dev = self.faft_client.system.get_root_dev() |
| 1095 | # Reset kernel A and B to bootable. |
| 1096 | self.faft_client.system.run_shell_command( |
| 1097 | 'cgpt add -i%s -P1 -S1 -T0 %s' % (self.KERNEL_MAP['a'], root_dev)) |
| 1098 | self.faft_client.system.run_shell_command( |
| 1099 | 'cgpt add -i%s -P1 -S1 -T0 %s' % (self.KERNEL_MAP['b'], root_dev)) |
| 1100 | # Set kernel part highest priority. |
| 1101 | self.faft_client.system.run_shell_command('cgpt prioritize -i%s %s' % |
| 1102 | (self.KERNEL_MAP[part], root_dev)) |
| 1103 | |
Yusuf Mohsinally | 1bacc96 | 2014-08-14 11:37:32 -0700 | [diff] [blame] | 1104 | def blocking_sync(self): |
| 1105 | """Run a blocking sync command.""" |
| 1106 | # The double calls to sync fakes a blocking call |
| 1107 | # since the first call returns before the flush |
| 1108 | # is complete, but the second will wait for the |
| 1109 | # first to finish. |
| 1110 | self.faft_client.system.run_shell_command('sync') |
| 1111 | self.faft_client.system.run_shell_command('sync') |
| 1112 | |
Ryan Lin | 5bee610 | 2014-09-16 13:17:02 -0700 | [diff] [blame] | 1113 | # sync only sends SYNCHRONIZE_CACHE but doesn't |
| 1114 | # check the status. hdparm sends TUR to check if |
| 1115 | # a device is ready for transfer operation. |
| 1116 | root_dev = self.faft_client.system.get_root_dev() |
| 1117 | self.faft_client.system.run_shell_command('hdparm -f %s' % root_dev) |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1118 | |
| 1119 | ################################################ |
| 1120 | # Reboot APIs |
| 1121 | |
Vic Yang | 9887e6f | 2014-06-03 11:11:30 -0700 | [diff] [blame] | 1122 | def reboot_warm(self, sync_before_boot=True, |
| 1123 | wait_for_dut_up=True, ctrl_d=False): |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1124 | """ |
| 1125 | Perform a warm reboot. |
| 1126 | |
| 1127 | This is the highest level function that most users will need. |
| 1128 | It performs a sync, triggers a reboot and waits for kernel to boot. |
| 1129 | |
| 1130 | @param sync_before_boot: bool, sync to disk before booting. |
| 1131 | @param wait_for_dut_up: bool, wait for dut to boot before returning. |
Vic Yang | 9887e6f | 2014-06-03 11:11:30 -0700 | [diff] [blame] | 1132 | @param ctrl_d: bool, press ctrl-D at dev screen. |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1133 | """ |
| 1134 | if sync_before_boot: |
Yusuf Mohsinally | 1bacc96 | 2014-08-14 11:37:32 -0700 | [diff] [blame] | 1135 | self.blocking_sync() |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1136 | self.reboot_warm_trigger() |
Vic Yang | 9887e6f | 2014-06-03 11:11:30 -0700 | [diff] [blame] | 1137 | if ctrl_d: |
| 1138 | self.wait_dev_screen_and_ctrl_d() |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1139 | if wait_for_dut_up: |
| 1140 | self.wait_for_client_offline() |
| 1141 | self.wait_for_kernel_up() |
| 1142 | |
Vic Yang | 9887e6f | 2014-06-03 11:11:30 -0700 | [diff] [blame] | 1143 | def reboot_cold(self, sync_before_boot=True, |
| 1144 | wait_for_dut_up=True, ctrl_d=False): |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1145 | """ |
| 1146 | Perform a cold reboot. |
| 1147 | |
| 1148 | This is the highest level function that most users will need. |
| 1149 | It performs a sync, triggers a reboot and waits for kernel to boot. |
| 1150 | |
| 1151 | @param sync_before_boot: bool, sync to disk before booting. |
| 1152 | @param wait_for_dut_up: bool, wait for dut to boot before returning. |
Vic Yang | 9887e6f | 2014-06-03 11:11:30 -0700 | [diff] [blame] | 1153 | @param ctrl_d: bool, press ctrl-D at dev screen. |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1154 | """ |
| 1155 | if sync_before_boot: |
Yusuf Mohsinally | 1bacc96 | 2014-08-14 11:37:32 -0700 | [diff] [blame] | 1156 | self.blocking_sync() |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1157 | self.reboot_cold_trigger() |
Vic Yang | 9887e6f | 2014-06-03 11:11:30 -0700 | [diff] [blame] | 1158 | if ctrl_d: |
| 1159 | self.wait_dev_screen_and_ctrl_d() |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1160 | if wait_for_dut_up: |
| 1161 | self.wait_for_client_offline() |
| 1162 | self.wait_for_kernel_up() |
| 1163 | |
| 1164 | def do_reboot_action(self, func): |
| 1165 | """ |
| 1166 | Helper function that wraps the reboot function so that we check if the |
| 1167 | DUT went down. |
| 1168 | |
| 1169 | @param func: function to trigger the reboot. |
| 1170 | """ |
| 1171 | logging.info("-[FAFT]-[ start do_reboot_action ]----------") |
| 1172 | boot_id = self.get_bootid() |
| 1173 | self._call_action(func) |
| 1174 | self.wait_for_client_offline(orig_boot_id=boot_id) |
| 1175 | logging.info("-[FAFT]-[ end do_reboot_action ]------------") |
| 1176 | |
| 1177 | def wait_for_kernel_up(self, install_deps=False): |
| 1178 | """ |
| 1179 | Helper function that waits for the device to boot up to kernel. |
| 1180 | |
| 1181 | @param install_deps: bool, install deps after boot. |
| 1182 | """ |
| 1183 | logging.info("-[FAFT]-[ start wait_for_kernel_up ]---") |
Duncan Laurie | b3abc43 | 2014-10-07 15:48:15 -0700 | [diff] [blame] | 1184 | # Wait for the system to respond to ping before attempting ssh |
| 1185 | if not self._client.ping_wait_up(90): |
| 1186 | logging.warning("-[FAFT]-[ system did not respond to ping ]") |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1187 | try: |
Danny Chan | 1437ad5 | 2014-06-30 13:57:12 -0700 | [diff] [blame] | 1188 | logging.info("Installing deps after boot : %s", install_deps) |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1189 | self.wait_for_client(install_deps=install_deps) |
| 1190 | # Stop update-engine as it may change firmware/kernel. |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 1191 | self._stop_service('update-engine') |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1192 | except ConnectionError: |
| 1193 | logging.error('wait_for_client() timed out.') |
Yusuf Mohsinally | 64ee3a7 | 2014-06-26 10:24:27 -0700 | [diff] [blame] | 1194 | self._restore_routine_from_timeout() |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1195 | logging.info("-[FAFT]-[ end wait_for_kernel_up ]-----") |
| 1196 | |
| 1197 | def reboot_warm_trigger(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1198 | """Request a warm reboot. |
| 1199 | |
| 1200 | A wrapper for underlying servo warm reset. |
| 1201 | """ |
| 1202 | # Use cold reset if the warm reset is broken. |
| 1203 | if self.faft_config.broken_warm_reset: |
| 1204 | logging.info('broken_warm_reset is True. Cold rebooting instead.') |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1205 | self.reboot_cold_trigger() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1206 | else: |
| 1207 | self.servo.get_power_state_controller().warm_reset() |
| 1208 | |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1209 | def reboot_cold_trigger(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1210 | """Request a cold reboot. |
| 1211 | |
| 1212 | A wrapper for underlying servo cold reset. |
| 1213 | """ |
J. Richard Barnette | 4b6af0d | 2014-06-05 09:57:20 -0700 | [diff] [blame] | 1214 | self.servo.get_power_state_controller().reset() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1215 | |
| 1216 | def sync_and_warm_reboot(self): |
| 1217 | """Request the client sync and do a warm reboot. |
| 1218 | |
| 1219 | This is the default reboot action on FAFT. |
| 1220 | """ |
Yusuf Mohsinally | 1bacc96 | 2014-08-14 11:37:32 -0700 | [diff] [blame] | 1221 | self.blocking_sync() |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1222 | self.reboot_warm_trigger() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1223 | |
| 1224 | def sync_and_cold_reboot(self): |
| 1225 | """Request the client sync and do a cold reboot. |
| 1226 | |
| 1227 | This reboot action is used to reset EC for recovery mode. |
| 1228 | """ |
Yusuf Mohsinally | 1bacc96 | 2014-08-14 11:37:32 -0700 | [diff] [blame] | 1229 | self.blocking_sync() |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1230 | self.reboot_cold_trigger() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1231 | |
| 1232 | def sync_and_ec_reboot(self, flags=''): |
| 1233 | """Request the client sync and do a EC triggered reboot. |
| 1234 | |
| 1235 | @param flags: Optional, a space-separated string of flags passed to EC |
| 1236 | reboot command, including: |
| 1237 | default: EC soft reboot; |
| 1238 | 'hard': EC cold/hard reboot. |
| 1239 | """ |
Yusuf Mohsinally | 1bacc96 | 2014-08-14 11:37:32 -0700 | [diff] [blame] | 1240 | self.blocking_sync() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1241 | self.ec.reboot(flags) |
| 1242 | time.sleep(self.faft_config.ec_boot_to_console) |
| 1243 | self.check_lid_and_power_on() |
| 1244 | |
| 1245 | def reboot_with_factory_install_shim(self): |
| 1246 | """Request reboot with factory install shim to reset TPM. |
| 1247 | |
| 1248 | Factory install shim requires dev mode enabled. So this method switches |
| 1249 | firmware to dev mode first and reboot. The client uses factory install |
| 1250 | shim to reset TPM values. |
| 1251 | """ |
| 1252 | # Unplug USB first to avoid the complicated USB autoboot cases. |
| 1253 | self.servo.switch_usbkey('host') |
| 1254 | is_dev = self.checkers.crossystem_checker({'devsw_boot': '1'}) |
| 1255 | if not is_dev: |
| 1256 | self.enable_dev_mode_and_reboot() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1257 | self.enable_rec_mode_and_reboot() |
| 1258 | self.wait_fw_screen_and_plug_usb() |
| 1259 | time.sleep(self.faft_config.install_shim_done) |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1260 | self.reboot_warm_trigger() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1261 | |
| 1262 | def full_power_off_and_on(self): |
| 1263 | """Shutdown the device by pressing power button and power on again.""" |
Danny Chan | 101b0b2 | 2014-11-06 10:08:54 -0800 | [diff] [blame] | 1264 | boot_id = self.get_bootid() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1265 | # Press power button to trigger Chrome OS normal shutdown process. |
| 1266 | # We use a customized delay since the normal-press 1.2s is not enough. |
| 1267 | self.servo.power_key(self.faft_config.hold_pwr_button) |
Danny Chan | 101b0b2 | 2014-11-06 10:08:54 -0800 | [diff] [blame] | 1268 | # device can take 44-51 seconds to restart, |
| 1269 | # add buffer from the default timeout of 60 seconds. |
| 1270 | self.wait_for_client_offline(timeout=100, orig_boot_id=boot_id) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1271 | time.sleep(self.faft_config.shutdown) |
| 1272 | # Short press power button to boot DUT again. |
| 1273 | self.servo.power_short_press() |
| 1274 | |
| 1275 | def check_lid_and_power_on(self): |
| 1276 | """ |
| 1277 | On devices with EC software sync, system powers on after EC reboots if |
| 1278 | lid is open. Otherwise, the EC shuts down CPU after about 3 seconds. |
| 1279 | This method checks lid switch state and presses power button if |
| 1280 | necessary. |
| 1281 | """ |
| 1282 | if self.servo.get("lid_open") == "no": |
| 1283 | time.sleep(self.faft_config.software_sync) |
| 1284 | self.servo.power_short_press() |
| 1285 | |
| 1286 | def _modify_usb_kernel(self, usb_dev, from_magic, to_magic): |
| 1287 | """Modify the kernel header magic in USB stick. |
| 1288 | |
| 1289 | The kernel header magic is the first 8-byte of kernel partition. |
| 1290 | We modify it to make it fail on kernel verification check. |
| 1291 | |
| 1292 | @param usb_dev: A string of USB stick path on the host, like '/dev/sdc'. |
| 1293 | @param from_magic: A string of magic which we change it from. |
| 1294 | @param to_magic: A string of magic which we change it to. |
| 1295 | @raise TestError: if failed to change magic. |
| 1296 | """ |
| 1297 | assert len(from_magic) == 8 |
| 1298 | assert len(to_magic) == 8 |
| 1299 | # USB image only contains one kernel. |
| 1300 | kernel_part = self._join_part(usb_dev, self.KERNEL_MAP['a']) |
| 1301 | read_cmd = "sudo dd if=%s bs=8 count=1 2>/dev/null" % kernel_part |
| 1302 | current_magic = self.servo.system_output(read_cmd) |
| 1303 | if current_magic == to_magic: |
| 1304 | logging.info("The kernel magic is already %s.", current_magic) |
| 1305 | return |
| 1306 | if current_magic != from_magic: |
| 1307 | raise error.TestError("Invalid kernel image on USB: wrong magic.") |
| 1308 | |
| 1309 | logging.info('Modify the kernel magic in USB, from %s to %s.', |
| 1310 | from_magic, to_magic) |
| 1311 | write_cmd = ("echo -n '%s' | sudo dd of=%s oflag=sync conv=notrunc " |
| 1312 | " 2>/dev/null" % (to_magic, kernel_part)) |
| 1313 | self.servo.system(write_cmd) |
| 1314 | |
| 1315 | if self.servo.system_output(read_cmd) != to_magic: |
| 1316 | raise error.TestError("Failed to write new magic.") |
| 1317 | |
| 1318 | def corrupt_usb_kernel(self, usb_dev): |
| 1319 | """Corrupt USB kernel by modifying its magic from CHROMEOS to CORRUPTD. |
| 1320 | |
| 1321 | @param usb_dev: A string of USB stick path on the host, like '/dev/sdc'. |
| 1322 | """ |
| 1323 | self._modify_usb_kernel(usb_dev, self.CHROMEOS_MAGIC, |
| 1324 | self.CORRUPTED_MAGIC) |
| 1325 | |
| 1326 | def restore_usb_kernel(self, usb_dev): |
| 1327 | """Restore USB kernel by modifying its magic from CORRUPTD to CHROMEOS. |
| 1328 | |
| 1329 | @param usb_dev: A string of USB stick path on the host, like '/dev/sdc'. |
| 1330 | """ |
| 1331 | self._modify_usb_kernel(usb_dev, self.CORRUPTED_MAGIC, |
| 1332 | self.CHROMEOS_MAGIC) |
| 1333 | |
| 1334 | def _call_action(self, action_tuple, check_status=False): |
| 1335 | """Call the action function with/without arguments. |
| 1336 | |
| 1337 | @param action_tuple: A function, or a tuple (function, args, error_msg), |
| 1338 | in which, args and error_msg are optional. args is |
| 1339 | either a value or a tuple if multiple arguments. |
| 1340 | This can also be a list containing multiple |
| 1341 | function or tuple. In this case, these actions are |
| 1342 | called in sequence. |
| 1343 | @param check_status: Check the return value of action function. If not |
| 1344 | succeed, raises a TestFail exception. |
| 1345 | @return: The result value of the action function. |
| 1346 | @raise TestError: An error when the action function is not callable. |
| 1347 | @raise TestFail: When check_status=True, action function not succeed. |
| 1348 | """ |
| 1349 | if isinstance(action_tuple, list): |
| 1350 | return all([self._call_action(action, check_status=check_status) |
| 1351 | for action in action_tuple]) |
| 1352 | |
| 1353 | action = action_tuple |
| 1354 | args = () |
| 1355 | error_msg = 'Not succeed' |
| 1356 | if isinstance(action_tuple, tuple): |
| 1357 | action = action_tuple[0] |
| 1358 | if len(action_tuple) >= 2: |
| 1359 | args = action_tuple[1] |
| 1360 | if not isinstance(args, tuple): |
| 1361 | args = (args,) |
| 1362 | if len(action_tuple) >= 3: |
| 1363 | error_msg = action_tuple[2] |
| 1364 | |
| 1365 | if action is None: |
| 1366 | return |
| 1367 | |
| 1368 | if not callable(action): |
| 1369 | raise error.TestError('action is not callable!') |
| 1370 | |
| 1371 | info_msg = 'calling %s' % str(action) |
| 1372 | if args: |
| 1373 | info_msg += ' with args %s' % str(args) |
| 1374 | logging.info(info_msg) |
| 1375 | ret = action(*args) |
| 1376 | |
| 1377 | if check_status and not ret: |
| 1378 | raise error.TestFail('%s: %s returning %s' % |
| 1379 | (error_msg, info_msg, str(ret))) |
| 1380 | return ret |
| 1381 | |
| 1382 | def run_shutdown_process(self, shutdown_action, pre_power_action=None, |
| 1383 | post_power_action=None, shutdown_timeout=None): |
| 1384 | """Run shutdown_action(), which makes DUT shutdown, and power it on. |
| 1385 | |
| 1386 | @param shutdown_action: function which makes DUT shutdown, like |
| 1387 | pressing power key. |
| 1388 | @param pre_power_action: function which is called before next power on. |
| 1389 | @param post_power_action: function which is called after next power on. |
| 1390 | @param shutdown_timeout: a timeout to confirm DUT shutdown. |
| 1391 | @raise TestFail: if the shutdown_action() failed to turn DUT off. |
| 1392 | """ |
| 1393 | self._call_action(shutdown_action) |
| 1394 | logging.info('Wait to ensure DUT shut down...') |
| 1395 | try: |
| 1396 | if shutdown_timeout is None: |
| 1397 | shutdown_timeout = self.faft_config.shutdown_timeout |
| 1398 | self.wait_for_client(timeout=shutdown_timeout) |
| 1399 | raise error.TestFail( |
| 1400 | 'Should shut the device down after calling %s.' % |
| 1401 | str(shutdown_action)) |
| 1402 | except ConnectionError: |
| 1403 | logging.info( |
| 1404 | 'DUT is surely shutdown. We are going to power it on again...') |
| 1405 | |
| 1406 | if pre_power_action: |
| 1407 | self._call_action(pre_power_action) |
| 1408 | self.servo.power_short_press() |
| 1409 | if post_power_action: |
| 1410 | self._call_action(post_power_action) |
| 1411 | |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1412 | def get_bootid(self, retry=3): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1413 | """ |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1414 | Return the bootid. |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1415 | """ |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1416 | boot_id = None |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1417 | while retry: |
| 1418 | try: |
| 1419 | boot_id = self._client.get_boot_id() |
| 1420 | break |
| 1421 | except error.AutoservRunError: |
| 1422 | retry -= 1 |
| 1423 | if retry: |
| 1424 | logging.info('Retry to get boot_id...') |
| 1425 | else: |
| 1426 | logging.warning('Failed to get boot_id.') |
| 1427 | logging.info('boot_id: %s', boot_id) |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1428 | return boot_id |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1429 | |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1430 | def check_state(self, func): |
| 1431 | """ |
| 1432 | Wrapper around _call_action with check_status set to True. This is a |
| 1433 | helper function to be used by tests and is currently implemented by |
| 1434 | calling _call_action with check_status=True. |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1435 | |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1436 | TODO: This function's arguments need to be made more stringent. And |
| 1437 | its functionality should be moved over to check functions directly in |
| 1438 | the future. |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1439 | |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1440 | @param func: A function, or a tuple (function, args, error_msg), |
| 1441 | in which, args and error_msg are optional. args is |
| 1442 | either a value or a tuple if multiple arguments. |
| 1443 | This can also be a list containing multiple |
| 1444 | function or tuple. In this case, these actions are |
| 1445 | called in sequence. |
| 1446 | @return: The result value of the action function. |
| 1447 | @raise TestFail: If the function does notsucceed. |
| 1448 | """ |
| 1449 | logging.info("-[FAFT]-[ start stepstate_checker ]----------") |
| 1450 | self._call_action(func, check_status=True) |
| 1451 | logging.info("-[FAFT]-[ end state_checker ]----------------") |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1452 | |
| 1453 | def get_current_firmware_sha(self): |
| 1454 | """Get current firmware sha of body and vblock. |
| 1455 | |
| 1456 | @return: Current firmware sha follows the order ( |
| 1457 | vblock_a_sha, body_a_sha, vblock_b_sha, body_b_sha) |
| 1458 | """ |
| 1459 | current_firmware_sha = (self.faft_client.bios.get_sig_sha('a'), |
| 1460 | self.faft_client.bios.get_body_sha('a'), |
| 1461 | self.faft_client.bios.get_sig_sha('b'), |
| 1462 | self.faft_client.bios.get_body_sha('b')) |
| 1463 | if not all(current_firmware_sha): |
| 1464 | raise error.TestError('Failed to get firmware sha.') |
| 1465 | return current_firmware_sha |
| 1466 | |
| 1467 | def is_firmware_changed(self): |
| 1468 | """Check if the current firmware changed, by comparing its SHA. |
| 1469 | |
| 1470 | @return: True if it is changed, otherwise Flase. |
| 1471 | """ |
| 1472 | # Device may not be rebooted after test. |
| 1473 | self.faft_client.bios.reload() |
| 1474 | |
| 1475 | current_sha = self.get_current_firmware_sha() |
| 1476 | |
| 1477 | if current_sha == self._backup_firmware_sha: |
| 1478 | return False |
| 1479 | else: |
| 1480 | corrupt_VBOOTA = (current_sha[0] != self._backup_firmware_sha[0]) |
| 1481 | corrupt_FVMAIN = (current_sha[1] != self._backup_firmware_sha[1]) |
| 1482 | corrupt_VBOOTB = (current_sha[2] != self._backup_firmware_sha[2]) |
| 1483 | corrupt_FVMAINB = (current_sha[3] != self._backup_firmware_sha[3]) |
| 1484 | logging.info("Firmware changed:") |
| 1485 | logging.info('VBOOTA is changed: %s', corrupt_VBOOTA) |
| 1486 | logging.info('VBOOTB is changed: %s', corrupt_VBOOTB) |
| 1487 | logging.info('FVMAIN is changed: %s', corrupt_FVMAIN) |
| 1488 | logging.info('FVMAINB is changed: %s', corrupt_FVMAINB) |
| 1489 | return True |
| 1490 | |
| 1491 | def backup_firmware(self, suffix='.original'): |
| 1492 | """Backup firmware to file, and then send it to host. |
| 1493 | |
| 1494 | @param suffix: a string appended to backup file name |
| 1495 | """ |
| 1496 | remote_temp_dir = self.faft_client.system.create_temp_dir() |
| 1497 | self.faft_client.bios.dump_whole(os.path.join(remote_temp_dir, 'bios')) |
| 1498 | self._client.get_file(os.path.join(remote_temp_dir, 'bios'), |
| 1499 | os.path.join(self.resultsdir, 'bios' + suffix)) |
| 1500 | |
| 1501 | self._backup_firmware_sha = self.get_current_firmware_sha() |
| 1502 | logging.info('Backup firmware stored in %s with suffix %s', |
| 1503 | self.resultsdir, suffix) |
| 1504 | |
| 1505 | def is_firmware_saved(self): |
| 1506 | """Check if a firmware saved (called backup_firmware before). |
| 1507 | |
| 1508 | @return: True if the firmware is backuped; otherwise False. |
| 1509 | """ |
| 1510 | return self._backup_firmware_sha != () |
| 1511 | |
| 1512 | def clear_saved_firmware(self): |
| 1513 | """Clear the firmware saved by the method backup_firmware.""" |
| 1514 | self._backup_firmware_sha = () |
| 1515 | |
| 1516 | def restore_firmware(self, suffix='.original'): |
| 1517 | """Restore firmware from host in resultsdir. |
| 1518 | |
| 1519 | @param suffix: a string appended to backup file name |
| 1520 | """ |
| 1521 | if not self.is_firmware_changed(): |
| 1522 | return |
| 1523 | |
| 1524 | # Backup current corrupted firmware. |
| 1525 | self.backup_firmware(suffix='.corrupt') |
| 1526 | |
| 1527 | # Restore firmware. |
| 1528 | remote_temp_dir = self.faft_client.system.create_temp_dir() |
| 1529 | self._client.send_file(os.path.join(self.resultsdir, 'bios' + suffix), |
| 1530 | os.path.join(remote_temp_dir, 'bios')) |
| 1531 | |
| 1532 | self.faft_client.bios.write_whole( |
| 1533 | os.path.join(remote_temp_dir, 'bios')) |
| 1534 | self.sync_and_warm_reboot() |
| 1535 | self.wait_for_client_offline() |
| 1536 | self.wait_dev_screen_and_ctrl_d() |
| 1537 | self.wait_for_client() |
| 1538 | |
| 1539 | logging.info('Successfully restore firmware.') |
| 1540 | |
| 1541 | def setup_firmwareupdate_shellball(self, shellball=None): |
| 1542 | """Deside a shellball to use in firmware update test. |
| 1543 | |
| 1544 | Check if there is a given shellball, and it is a shell script. Then, |
| 1545 | send it to the remote host. Otherwise, use |
| 1546 | /usr/sbin/chromeos-firmwareupdate. |
| 1547 | |
| 1548 | @param shellball: path of a shellball or default to None. |
| 1549 | |
| 1550 | @return: Path of shellball in remote host. If use default shellball, |
| 1551 | reutrn None. |
| 1552 | """ |
| 1553 | updater_path = None |
| 1554 | if shellball: |
| 1555 | # Determine the firmware file is a shellball or a raw binary. |
| 1556 | is_shellball = (utils.system_output("file %s" % shellball).find( |
| 1557 | "shell script") != -1) |
| 1558 | if is_shellball: |
| 1559 | logging.info('Device will update firmware with shellball %s', |
| 1560 | shellball) |
| 1561 | temp_dir = self.faft_client.system.create_temp_dir( |
| 1562 | 'shellball_') |
| 1563 | temp_shellball = os.path.join(temp_dir, 'updater.sh') |
| 1564 | self._client.send_file(shellball, temp_shellball) |
| 1565 | updater_path = temp_shellball |
| 1566 | else: |
| 1567 | raise error.TestFail( |
| 1568 | 'The given shellball is not a shell script.') |
| 1569 | return updater_path |
| 1570 | |
| 1571 | def is_kernel_changed(self): |
| 1572 | """Check if the current kernel is changed, by comparing its SHA1 hash. |
| 1573 | |
| 1574 | @return: True if it is changed; otherwise, False. |
| 1575 | """ |
| 1576 | changed = False |
| 1577 | for p in ('A', 'B'): |
| 1578 | backup_sha = self._backup_kernel_sha.get(p, None) |
| 1579 | current_sha = self.faft_client.kernel.get_sha(p) |
| 1580 | if backup_sha != current_sha: |
| 1581 | changed = True |
| 1582 | logging.info('Kernel %s is changed', p) |
| 1583 | return changed |
| 1584 | |
| 1585 | def backup_kernel(self, suffix='.original'): |
| 1586 | """Backup kernel to files, and the send them to host. |
| 1587 | |
| 1588 | @param suffix: a string appended to backup file name. |
| 1589 | """ |
| 1590 | remote_temp_dir = self.faft_client.system.create_temp_dir() |
| 1591 | for p in ('A', 'B'): |
| 1592 | remote_path = os.path.join(remote_temp_dir, 'kernel_%s' % p) |
| 1593 | self.faft_client.kernel.dump(p, remote_path) |
| 1594 | self._client.get_file( |
| 1595 | remote_path, |
| 1596 | os.path.join(self.resultsdir, 'kernel_%s%s' % (p, suffix))) |
| 1597 | self._backup_kernel_sha[p] = self.faft_client.kernel.get_sha(p) |
| 1598 | logging.info('Backup kernel stored in %s with suffix %s', |
| 1599 | self.resultsdir, suffix) |
| 1600 | |
| 1601 | def is_kernel_saved(self): |
| 1602 | """Check if kernel images are saved (backup_kernel called before). |
| 1603 | |
| 1604 | @return: True if the kernel is saved; otherwise, False. |
| 1605 | """ |
| 1606 | return len(self._backup_kernel_sha) != 0 |
| 1607 | |
| 1608 | def clear_saved_kernel(self): |
| 1609 | """Clear the kernel saved by backup_kernel().""" |
| 1610 | self._backup_kernel_sha = dict() |
| 1611 | |
| 1612 | def restore_kernel(self, suffix='.original'): |
| 1613 | """Restore kernel from host in resultsdir. |
| 1614 | |
| 1615 | @param suffix: a string appended to backup file name. |
| 1616 | """ |
| 1617 | if not self.is_kernel_changed(): |
| 1618 | return |
| 1619 | |
| 1620 | # Backup current corrupted kernel. |
| 1621 | self.backup_kernel(suffix='.corrupt') |
| 1622 | |
| 1623 | # Restore kernel. |
| 1624 | remote_temp_dir = self.faft_client.system.create_temp_dir() |
| 1625 | for p in ('A', 'B'): |
| 1626 | remote_path = os.path.join(remote_temp_dir, 'kernel_%s' % p) |
| 1627 | self._client.send_file( |
| 1628 | os.path.join(self.resultsdir, 'kernel_%s%s' % (p, suffix)), |
| 1629 | remote_path) |
| 1630 | self.faft_client.kernel.write(p, remote_path) |
| 1631 | |
| 1632 | self.sync_and_warm_reboot() |
| 1633 | self.wait_for_client_offline() |
| 1634 | self.wait_dev_screen_and_ctrl_d() |
| 1635 | self.wait_for_client() |
| 1636 | |
| 1637 | logging.info('Successfully restored kernel.') |
| 1638 | |
| 1639 | def backup_cgpt_attributes(self): |
| 1640 | """Backup CGPT partition table attributes.""" |
| 1641 | self._backup_cgpt_attr = self.faft_client.cgpt.get_attributes() |
| 1642 | |
| 1643 | def restore_cgpt_attributes(self): |
| 1644 | """Restore CGPT partition table attributes.""" |
| 1645 | current_table = self.faft_client.cgpt.get_attributes() |
| 1646 | if current_table == self._backup_cgpt_attr: |
| 1647 | return |
| 1648 | logging.info('CGPT table is changed. Original: %r. Current: %r.', |
| 1649 | self._backup_cgpt_attr, |
| 1650 | current_table) |
| 1651 | self.faft_client.cgpt.set_attributes(self._backup_cgpt_attr) |
| 1652 | |
| 1653 | self.sync_and_warm_reboot() |
| 1654 | self.wait_for_client_offline() |
| 1655 | self.wait_dev_screen_and_ctrl_d() |
| 1656 | self.wait_for_client() |
| 1657 | |
| 1658 | logging.info('Successfully restored CGPT table.') |