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