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 |
J. Richard Barnette | cab6be3 | 2014-07-17 13:07:39 -0700 | [diff] [blame] | 15 | from autotest_lib.server import test |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 16 | from autotest_lib.server.cros import vboot_constants as vboot |
| 17 | from autotest_lib.server.cros.faft.config.config import Config as FAFTConfig |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 18 | from autotest_lib.server.cros.faft.rpc_proxy import RPCProxy |
Tom Wai-Hong Tam | ed4d67b | 2015-05-20 05:20:00 +0800 | [diff] [blame] | 19 | from autotest_lib.server.cros.faft.utils import mode_switcher |
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 |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 42 | self.faft_client = RPCProxy(host) |
Duncan Laurie | 10eb618 | 2014-10-07 15:39:05 -0700 | [diff] [blame] | 43 | self.lockfile = '/var/tmp/faft/lock' |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 44 | |
Tom Wai-Hong Tam | 63920b7 | 2015-07-02 05:08:21 +0800 | [diff] [blame] | 45 | def wait_for_client(self, timeout=180): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 46 | """Wait for the client to come back online. |
| 47 | |
| 48 | New remote processes will be launched if their used flags are enabled. |
| 49 | |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 50 | @param timeout: Time in seconds to wait for the client SSH daemon to |
| 51 | come up. |
| 52 | @raise ConnectionError: Failed to connect DUT. |
| 53 | """ |
| 54 | if not self._client.wait_up(timeout): |
| 55 | raise ConnectionError() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 56 | # Check the FAFT client is avaiable. |
| 57 | self.faft_client.system.is_available() |
| 58 | |
| 59 | def wait_for_client_offline(self, timeout=60, orig_boot_id=None): |
| 60 | """Wait for the client to come offline. |
| 61 | |
| 62 | @param timeout: Time in seconds to wait the client to come offline. |
| 63 | @param orig_boot_id: A string containing the original boot id. |
| 64 | @raise ConnectionError: Failed to connect DUT. |
| 65 | """ |
| 66 | # When running against panther, we see that sometimes |
| 67 | # ping_wait_down() does not work correctly. There needs to |
| 68 | # be some investigation to the root cause. |
| 69 | # If we sleep for 120s before running get_boot_id(), it |
| 70 | # does succeed. But if we change this to ping_wait_down() |
| 71 | # there are implications on the wait time when running |
| 72 | # commands at the fw screens. |
| 73 | if not self._client.ping_wait_down(timeout): |
| 74 | if orig_boot_id and self._client.get_boot_id() != orig_boot_id: |
| 75 | logging.warn('Reboot done very quickly.') |
| 76 | return |
| 77 | raise ConnectionError() |
| 78 | |
| 79 | |
| 80 | class FirmwareTest(FAFTBase): |
| 81 | """ |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 82 | Base class that sets up helper objects/functions for firmware tests. |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 83 | |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 84 | TODO: add documentaion as the FAFT rework progresses. |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 85 | """ |
| 86 | version = 1 |
| 87 | |
| 88 | # Mapping of partition number of kernel and rootfs. |
| 89 | KERNEL_MAP = {'a':'2', 'b':'4', '2':'2', '4':'4', '3':'2', '5':'4'} |
| 90 | ROOTFS_MAP = {'a':'3', 'b':'5', '2':'3', '4':'5', '3':'3', '5':'5'} |
| 91 | OTHER_KERNEL_MAP = {'a':'4', 'b':'2', '2':'4', '4':'2', '3':'4', '5':'2'} |
| 92 | OTHER_ROOTFS_MAP = {'a':'5', 'b':'3', '2':'5', '4':'3', '3':'5', '5':'3'} |
| 93 | |
| 94 | CHROMEOS_MAGIC = "CHROMEOS" |
| 95 | CORRUPTED_MAGIC = "CORRUPTD" |
| 96 | |
| 97 | _SERVOD_LOG = '/var/log/servod.log' |
| 98 | |
| 99 | _ROOTFS_PARTITION_NUMBER = 3 |
| 100 | |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 101 | _backup_firmware_sha = () |
| 102 | _backup_kernel_sha = dict() |
| 103 | _backup_cgpt_attr = dict() |
| 104 | _backup_gbb_flags = None |
| 105 | _backup_dev_mode = None |
| 106 | |
| 107 | # Class level variable, keep track the states of one time setup. |
| 108 | # This variable is preserved across tests which inherit this class. |
| 109 | _global_setup_done = { |
| 110 | 'gbb_flags': False, |
| 111 | 'reimage': False, |
| 112 | 'usb_check': False, |
| 113 | } |
| 114 | |
| 115 | @classmethod |
| 116 | def check_setup_done(cls, label): |
| 117 | """Check if the given setup is done. |
| 118 | |
| 119 | @param label: The label of the setup. |
| 120 | """ |
| 121 | return cls._global_setup_done[label] |
| 122 | |
| 123 | @classmethod |
| 124 | def mark_setup_done(cls, label): |
| 125 | """Mark the given setup done. |
| 126 | |
| 127 | @param label: The label of the setup. |
| 128 | """ |
| 129 | cls._global_setup_done[label] = True |
| 130 | |
| 131 | @classmethod |
| 132 | def unmark_setup_done(cls, label): |
| 133 | """Mark the given setup not done. |
| 134 | |
| 135 | @param label: The label of the setup. |
| 136 | """ |
| 137 | cls._global_setup_done[label] = False |
| 138 | |
| 139 | def initialize(self, host, cmdline_args, ec_wp=None): |
| 140 | super(FirmwareTest, self).initialize(host) |
| 141 | self.run_id = str(uuid.uuid4()) |
| 142 | logging.info('FirmwareTest initialize begin (id=%s)', self.run_id) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 143 | # Parse arguments from command line |
| 144 | args = {} |
| 145 | self.power_control = host.POWER_CONTROL_RPM |
| 146 | for arg in cmdline_args: |
| 147 | match = re.search("^(\w+)=(.+)", arg) |
| 148 | if match: |
| 149 | args[match.group(1)] = match.group(2) |
| 150 | if 'power_control' in args: |
| 151 | self.power_control = args['power_control'] |
| 152 | if self.power_control not in host.POWER_CONTROL_VALID_ARGS: |
| 153 | raise error.TestError('Valid values for --args=power_control ' |
| 154 | 'are %s. But you entered wrong argument ' |
| 155 | 'as "%s".' |
| 156 | % (host.POWER_CONTROL_VALID_ARGS, |
| 157 | self.power_control)) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 158 | |
| 159 | self.faft_config = FAFTConfig( |
| 160 | self.faft_client.system.get_platform_name()) |
Tom Wai-Hong Tam | 0cc9a4f | 2015-05-02 05:12:39 +0800 | [diff] [blame] | 161 | self.checkers = FAFTCheckers(self) |
Tom Wai-Hong Tam | ed4d67b | 2015-05-20 05:20:00 +0800 | [diff] [blame] | 162 | self.switcher = mode_switcher.create_mode_switcher(self) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 163 | |
| 164 | if self.faft_config.chrome_ec: |
| 165 | self.ec = chrome_ec.ChromeEC(self.servo) |
| 166 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 167 | self._setup_uart_capture() |
| 168 | self._setup_servo_log() |
| 169 | self._record_system_info() |
Daisuke Nojiri | 682a6d6 | 2014-11-21 09:59:32 -0800 | [diff] [blame] | 170 | self.fw_vboot2 = self.faft_client.system.get_fw_vboot2() |
| 171 | logging.info('vboot version: %d', 2 if self.fw_vboot2 else 1) |
| 172 | if self.fw_vboot2: |
| 173 | self.faft_client.system.set_fw_try_next('A') |
| 174 | if self.faft_client.system.get_crossystem_value('mainfw_act') == 'B': |
| 175 | logging.info('mainfw_act is B. rebooting to set it A') |
Tom Wai-Hong Tam | 4777624 | 2015-05-07 02:45:32 +0800 | [diff] [blame] | 176 | self.switcher.mode_aware_reboot() |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 177 | self._setup_gbb_flags() |
| 178 | self._stop_service('update-engine') |
Duncan Laurie | 10eb618 | 2014-10-07 15:39:05 -0700 | [diff] [blame] | 179 | self._create_faft_lockfile() |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 180 | self._setup_ec_write_protect(ec_wp) |
Yusuf Mohsinally | 1b7a48b | 2014-05-12 19:25:35 -0700 | [diff] [blame] | 181 | # See chromium:239034 regarding needing this sync. |
Yusuf Mohsinally | 1bacc96 | 2014-08-14 11:37:32 -0700 | [diff] [blame] | 182 | self.blocking_sync() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 183 | logging.info('FirmwareTest initialize done (id=%s)', self.run_id) |
| 184 | |
| 185 | def cleanup(self): |
| 186 | """Autotest cleanup function.""" |
| 187 | # Unset state checker in case it's set by subclass |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 188 | logging.info('FirmwareTest cleaning up (id=%s)', self.run_id) |
| 189 | try: |
| 190 | self.faft_client.system.is_available() |
| 191 | except: |
| 192 | # Remote is not responding. Revive DUT so that subsequent tests |
| 193 | # don't fail. |
| 194 | self._restore_routine_from_timeout() |
Tom Wai-Hong Tam | 0cc9a4f | 2015-05-02 05:12:39 +0800 | [diff] [blame] | 195 | self.switcher.restore_mode() |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 196 | self._restore_ec_write_protect() |
| 197 | self._restore_gbb_flags() |
| 198 | self._start_service('update-engine') |
Duncan Laurie | 10eb618 | 2014-10-07 15:39:05 -0700 | [diff] [blame] | 199 | self._remove_faft_lockfile() |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 200 | self._record_servo_log() |
| 201 | self._record_faft_client_log() |
| 202 | self._cleanup_uart_capture() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 203 | super(FirmwareTest, self).cleanup() |
| 204 | logging.info('FirmwareTest cleanup done (id=%s)', self.run_id) |
| 205 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 206 | def _record_system_info(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 207 | """Record some critical system info to the attr keyval. |
| 208 | |
Christopher Wiley | 004a8cd | 2015-05-19 11:49:13 -0700 | [diff] [blame] | 209 | This info is used by generate_test_report later. |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 210 | """ |
| 211 | self.write_attr_keyval({ |
| 212 | 'fw_version': self.faft_client.ec.get_version(), |
| 213 | 'hwid': self.faft_client.system.get_crossystem_value('hwid'), |
| 214 | 'fwid': self.faft_client.system.get_crossystem_value('fwid'), |
| 215 | }) |
| 216 | |
| 217 | def invalidate_firmware_setup(self): |
| 218 | """Invalidate all firmware related setup state. |
| 219 | |
| 220 | This method is called when the firmware is re-flashed. It resets all |
| 221 | firmware related setup states so that the next test setup properly |
| 222 | again. |
| 223 | """ |
| 224 | self.unmark_setup_done('gbb_flags') |
| 225 | |
| 226 | def _retrieve_recovery_reason_from_trap(self): |
| 227 | """Try to retrieve the recovery reason from a trapped recovery screen. |
| 228 | |
| 229 | @return: The recovery_reason, 0 if any error. |
| 230 | """ |
| 231 | recovery_reason = 0 |
| 232 | logging.info('Try to retrieve recovery reason...') |
| 233 | if self.servo.get_usbkey_direction() == 'dut': |
Tom Wai-Hong Tam | 0430288 | 2015-05-14 06:08:34 +0800 | [diff] [blame] | 234 | self.switcher.bypass_rec_mode() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 235 | else: |
| 236 | self.servo.switch_usbkey('dut') |
| 237 | |
| 238 | try: |
Tom Wai-Hong Tam | eeed7fb | 2015-05-08 09:43:29 +0800 | [diff] [blame] | 239 | self.wait_for_client() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 240 | lines = self.faft_client.system.run_shell_command_get_output( |
| 241 | 'crossystem recovery_reason') |
| 242 | recovery_reason = int(lines[0]) |
| 243 | logging.info('Got the recovery reason %d.', recovery_reason) |
| 244 | except ConnectionError: |
| 245 | logging.error('Failed to get the recovery reason due to connection ' |
| 246 | 'error.') |
| 247 | return recovery_reason |
| 248 | |
| 249 | def _reset_client(self): |
| 250 | """Reset client to a workable state. |
| 251 | |
| 252 | This method is called when the client is not responsive. It may be |
| 253 | caused by the following cases: |
| 254 | - halt on a firmware screen without timeout, e.g. REC_INSERT screen; |
| 255 | - corrupted firmware; |
| 256 | - corrutped OS image. |
| 257 | """ |
| 258 | # DUT may halt on a firmware screen. Try cold reboot. |
| 259 | logging.info('Try cold reboot...') |
Tom Wai-Hong Tam | a704f18 | 2015-05-06 06:12:55 +0800 | [diff] [blame] | 260 | self.switcher.mode_aware_reboot(reboot_type='cold', |
| 261 | sync_before_boot=False, |
| 262 | wait_for_dut_up=False) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 263 | self.wait_for_client_offline() |
Tom Wai-Hong Tam | 0430288 | 2015-05-14 06:08:34 +0800 | [diff] [blame] | 264 | self.switcher.bypass_dev_mode() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 265 | try: |
| 266 | self.wait_for_client() |
| 267 | return |
| 268 | except ConnectionError: |
| 269 | logging.warn('Cold reboot doesn\'t help, still connection error.') |
| 270 | |
| 271 | # DUT may be broken by a corrupted firmware. Restore firmware. |
| 272 | # We assume the recovery boot still works fine. Since the recovery |
| 273 | # code is in RO region and all FAFT tests don't change the RO region |
| 274 | # except GBB. |
| 275 | if self.is_firmware_saved(): |
| 276 | self._ensure_client_in_recovery() |
| 277 | logging.info('Try restore the original firmware...') |
| 278 | if self.is_firmware_changed(): |
| 279 | try: |
| 280 | self.restore_firmware() |
| 281 | return |
| 282 | except ConnectionError: |
| 283 | logging.warn('Restoring firmware doesn\'t help, still ' |
| 284 | 'connection error.') |
| 285 | |
| 286 | # Perhaps it's kernel that's broken. Let's try restoring it. |
| 287 | if self.is_kernel_saved(): |
| 288 | self._ensure_client_in_recovery() |
| 289 | logging.info('Try restore the original kernel...') |
| 290 | if self.is_kernel_changed(): |
| 291 | try: |
| 292 | self.restore_kernel() |
| 293 | return |
| 294 | except ConnectionError: |
| 295 | logging.warn('Restoring kernel doesn\'t help, still ' |
| 296 | 'connection error.') |
| 297 | |
| 298 | # DUT may be broken by a corrupted OS image. Restore OS image. |
| 299 | self._ensure_client_in_recovery() |
| 300 | logging.info('Try restore the OS image...') |
| 301 | self.faft_client.system.run_shell_command('chromeos-install --yes') |
Tom Wai-Hong Tam | a704f18 | 2015-05-06 06:12:55 +0800 | [diff] [blame] | 302 | self.switcher.mode_aware_reboot(wait_for_dut_up=False) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 303 | self.wait_for_client_offline() |
Tom Wai-Hong Tam | 0430288 | 2015-05-14 06:08:34 +0800 | [diff] [blame] | 304 | self.switcher.bypass_dev_mode() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 305 | try: |
Tom Wai-Hong Tam | eeed7fb | 2015-05-08 09:43:29 +0800 | [diff] [blame] | 306 | self.wait_for_client() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 307 | logging.info('Successfully restore OS image.') |
| 308 | return |
| 309 | except ConnectionError: |
| 310 | logging.warn('Restoring OS image doesn\'t help, still connection ' |
| 311 | 'error.') |
| 312 | |
| 313 | def _ensure_client_in_recovery(self): |
| 314 | """Ensure client in recovery boot; reboot into it if necessary. |
| 315 | |
| 316 | @raise TestError: if failed to boot the USB image. |
| 317 | """ |
| 318 | logging.info('Try boot into USB image...') |
Tom Wai-Hong Tam | d7a0d05 | 2015-05-14 02:18:23 +0800 | [diff] [blame] | 319 | self.switcher.reboot_to_mode(to_mode='rec', sync_before_boot=False, |
| 320 | wait_for_dut_up=False) |
Tom Wai-Hong Tam | f2de4de | 2015-05-02 02:48:08 +0800 | [diff] [blame] | 321 | self.servo.switch_usbkey('host') |
Tom Wai-Hong Tam | 0430288 | 2015-05-14 06:08:34 +0800 | [diff] [blame] | 322 | self.switcher.bypass_rec_mode() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 323 | try: |
Tom Wai-Hong Tam | eeed7fb | 2015-05-08 09:43:29 +0800 | [diff] [blame] | 324 | self.wait_for_client() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 325 | except ConnectionError: |
| 326 | raise error.TestError('Failed to boot the USB image.') |
| 327 | |
Yusuf Mohsinally | 64ee3a7 | 2014-06-26 10:24:27 -0700 | [diff] [blame] | 328 | def _restore_routine_from_timeout(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 329 | """A routine to try to restore the system from a timeout error. |
| 330 | |
| 331 | This method is called when FAFT failed to connect DUT after reboot. |
| 332 | |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 333 | @raise TestFail: This exception is already raised, with a decription |
| 334 | why it failed. |
| 335 | """ |
| 336 | # DUT is disconnected. Capture the UART output for debug. |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 337 | self._record_uart_capture() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 338 | |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 339 | # TODO(waihong@chromium.org): Implement replugging the Ethernet to |
| 340 | # identify if it is a network flaky. |
| 341 | |
| 342 | recovery_reason = self._retrieve_recovery_reason_from_trap() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 343 | |
| 344 | # Reset client to a workable state. |
| 345 | self._reset_client() |
| 346 | |
| 347 | # Raise the proper TestFail exception. |
Yusuf Mohsinally | 64ee3a7 | 2014-06-26 10:24:27 -0700 | [diff] [blame] | 348 | if recovery_reason: |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 349 | raise error.TestFail('Trapped in the recovery screen (reason: %d) ' |
| 350 | 'and timed out' % recovery_reason) |
| 351 | else: |
| 352 | raise error.TestFail('Timed out waiting for DUT reboot') |
| 353 | |
Julius Werner | 18c4e16 | 2015-07-07 13:02:08 -0700 | [diff] [blame] | 354 | def assert_test_image_in_usb_disk(self, usb_dev=None): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 355 | """Assert an USB disk plugged-in on servo and a test image inside. |
| 356 | |
| 357 | @param usb_dev: A string of USB stick path on the host, like '/dev/sdc'. |
| 358 | If None, it is detected automatically. |
Julius Werner | 18c4e16 | 2015-07-07 13:02:08 -0700 | [diff] [blame] | 359 | @raise TestError: if USB disk not detected or not a test image. |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 360 | """ |
| 361 | if self.check_setup_done('usb_check'): |
| 362 | return |
| 363 | if usb_dev: |
| 364 | assert self.servo.get_usbkey_direction() == 'host' |
| 365 | else: |
| 366 | self.servo.switch_usbkey('host') |
| 367 | usb_dev = self.servo.probe_host_usb_dev() |
| 368 | if not usb_dev: |
| 369 | raise error.TestError( |
| 370 | 'An USB disk should be plugged in the servo board.') |
| 371 | |
| 372 | rootfs = '%s%s' % (usb_dev, self._ROOTFS_PARTITION_NUMBER) |
| 373 | logging.info('usb dev is %s', usb_dev) |
| 374 | tmpd = self.servo.system_output('mktemp -d -t usbcheck.XXXX') |
| 375 | self.servo.system('mount -o ro %s %s' % (rootfs, tmpd)) |
| 376 | |
Julius Werner | dc535df | 2015-02-26 16:42:38 -0800 | [diff] [blame] | 377 | try: |
Julius Werner | 18c4e16 | 2015-07-07 13:02:08 -0700 | [diff] [blame] | 378 | usb_lsb = self.servo.system_output('cat %s' % |
| 379 | os.path.join(tmpd, 'etc/lsb-release')) |
| 380 | logging.debug('Dumping lsb-release on USB stick:\n%s', usb_lsb) |
| 381 | dut_lsb = '\n'.join(self.faft_client.system. |
| 382 | run_shell_command_get_output('cat /etc/lsb-release')) |
| 383 | logging.debug('Dumping lsb-release on DUT:\n%s', dut_lsb) |
Julius Werner | e6adca4 | 2015-08-13 11:10:59 -0700 | [diff] [blame] | 384 | if not re.search(r'RELEASE_TRACK=.*test', usb_lsb): |
Julius Werner | 18c4e16 | 2015-07-07 13:02:08 -0700 | [diff] [blame] | 385 | raise error.TestError('USB stick in servo is no test image') |
| 386 | usb_board = re.search(r'BOARD=(.*)', usb_lsb).group(1) |
| 387 | dut_board = re.search(r'BOARD=(.*)', dut_lsb).group(1) |
| 388 | if usb_board != dut_board: |
| 389 | raise error.TestError('USB stick in servo contains a %s ' |
| 390 | 'image, but DUT is a %s' % (usb_board, dut_board)) |
Julius Werner | dc535df | 2015-02-26 16:42:38 -0800 | [diff] [blame] | 391 | finally: |
| 392 | for cmd in ('umount %s' % rootfs, 'sync', 'rm -rf %s' % tmpd): |
| 393 | self.servo.system(cmd) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 394 | |
| 395 | self.mark_setup_done('usb_check') |
| 396 | |
Julius Werner | 18c4e16 | 2015-07-07 13:02:08 -0700 | [diff] [blame] | 397 | def setup_usbkey(self, usbkey, host=None): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 398 | """Setup the USB disk for the test. |
| 399 | |
| 400 | It checks the setup of USB disk and a valid ChromeOS test image inside. |
| 401 | It also muxes the USB disk to either the host or DUT by request. |
| 402 | |
| 403 | @param usbkey: True if the USB disk is required for the test, False if |
| 404 | not required. |
| 405 | @param host: Optional, True to mux the USB disk to host, False to mux it |
| 406 | to DUT, default to do nothing. |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 407 | """ |
| 408 | if usbkey: |
Julius Werner | 18c4e16 | 2015-07-07 13:02:08 -0700 | [diff] [blame] | 409 | self.assert_test_image_in_usb_disk() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 410 | elif host is None: |
| 411 | # USB disk is not required for the test. Better to mux it to host. |
| 412 | host = True |
| 413 | |
| 414 | if host is True: |
| 415 | self.servo.switch_usbkey('host') |
| 416 | elif host is False: |
| 417 | self.servo.switch_usbkey('dut') |
| 418 | |
| 419 | def get_usbdisk_path_on_dut(self): |
| 420 | """Get the path of the USB disk device plugged-in the servo on DUT. |
| 421 | |
| 422 | Returns: |
| 423 | A string representing USB disk path, like '/dev/sdb', or None if |
| 424 | no USB disk is found. |
| 425 | """ |
| 426 | cmd = 'ls -d /dev/s*[a-z]' |
| 427 | original_value = self.servo.get_usbkey_direction() |
| 428 | |
| 429 | # Make the dut unable to see the USB disk. |
| 430 | self.servo.switch_usbkey('off') |
| 431 | no_usb_set = set( |
| 432 | self.faft_client.system.run_shell_command_get_output(cmd)) |
| 433 | |
| 434 | # Make the dut able to see the USB disk. |
| 435 | self.servo.switch_usbkey('dut') |
Tom Wai-Hong Tam | b0314a0 | 2015-05-20 05:25:22 +0800 | [diff] [blame] | 436 | time.sleep(self.faft_config.usb_plug) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 437 | has_usb_set = set( |
| 438 | self.faft_client.system.run_shell_command_get_output(cmd)) |
| 439 | |
| 440 | # Back to its original value. |
| 441 | if original_value != self.servo.get_usbkey_direction(): |
| 442 | self.servo.switch_usbkey(original_value) |
| 443 | |
| 444 | diff_set = has_usb_set - no_usb_set |
| 445 | if len(diff_set) == 1: |
| 446 | return diff_set.pop() |
| 447 | else: |
| 448 | return None |
| 449 | |
Duncan Laurie | 10eb618 | 2014-10-07 15:39:05 -0700 | [diff] [blame] | 450 | def _create_faft_lockfile(self): |
| 451 | """Creates the FAFT lockfile.""" |
| 452 | logging.info('Creating FAFT lockfile...') |
| 453 | command = 'touch %s' % (self.lockfile) |
| 454 | self.faft_client.system.run_shell_command(command) |
| 455 | |
| 456 | def _remove_faft_lockfile(self): |
| 457 | """Removes the FAFT lockfile.""" |
| 458 | logging.info('Removing FAFT lockfile...') |
| 459 | command = 'rm -f %s' % (self.lockfile) |
| 460 | self.faft_client.system.run_shell_command(command) |
| 461 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 462 | def _stop_service(self, service): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 463 | """Stops a upstart service on the client. |
| 464 | |
| 465 | @param service: The name of the upstart service. |
| 466 | """ |
| 467 | logging.info('Stopping %s...', service) |
| 468 | command = 'status %s | grep stop || stop %s' % (service, service) |
| 469 | self.faft_client.system.run_shell_command(command) |
| 470 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 471 | def _start_service(self, service): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 472 | """Starts a upstart service on the client. |
| 473 | |
| 474 | @param service: The name of the upstart service. |
| 475 | """ |
| 476 | logging.info('Starting %s...', service) |
| 477 | command = 'status %s | grep start || start %s' % (service, service) |
| 478 | self.faft_client.system.run_shell_command(command) |
| 479 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 480 | def _write_gbb_flags(self, new_flags): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 481 | """Write the GBB flags to the current firmware. |
| 482 | |
| 483 | @param new_flags: The flags to write. |
| 484 | """ |
| 485 | gbb_flags = self.faft_client.bios.get_gbb_flags() |
| 486 | if gbb_flags == new_flags: |
| 487 | return |
| 488 | logging.info('Changing GBB flags from 0x%x to 0x%x.', |
| 489 | gbb_flags, new_flags) |
| 490 | self.faft_client.system.run_shell_command( |
| 491 | '/usr/share/vboot/bin/set_gbb_flags.sh 0x%x' % new_flags) |
| 492 | self.faft_client.bios.reload() |
| 493 | # If changing FORCE_DEV_SWITCH_ON flag, reboot to get a clear state |
| 494 | if ((gbb_flags ^ new_flags) & vboot.GBB_FLAG_FORCE_DEV_SWITCH_ON): |
Tom Wai-Hong Tam | a704f18 | 2015-05-06 06:12:55 +0800 | [diff] [blame] | 495 | self.switcher.mode_aware_reboot() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 496 | |
| 497 | def clear_set_gbb_flags(self, clear_mask, set_mask): |
| 498 | """Clear and set the GBB flags in the current flashrom. |
| 499 | |
| 500 | @param clear_mask: A mask of flags to be cleared. |
| 501 | @param set_mask: A mask of flags to be set. |
| 502 | """ |
| 503 | gbb_flags = self.faft_client.bios.get_gbb_flags() |
| 504 | new_flags = gbb_flags & ctypes.c_uint32(~clear_mask).value | set_mask |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 505 | self._write_gbb_flags(new_flags) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 506 | |
| 507 | def check_ec_capability(self, required_cap=None, suppress_warning=False): |
| 508 | """Check if current platform has required EC capabilities. |
| 509 | |
| 510 | @param required_cap: A list containing required EC capabilities. Pass in |
| 511 | None to only check for presence of Chrome EC. |
| 512 | @param suppress_warning: True to suppress any warning messages. |
| 513 | @return: True if requirements are met. Otherwise, False. |
| 514 | """ |
| 515 | if not self.faft_config.chrome_ec: |
| 516 | if not suppress_warning: |
| 517 | logging.warn('Requires Chrome EC to run this test.') |
| 518 | return False |
| 519 | |
| 520 | if not required_cap: |
| 521 | return True |
| 522 | |
| 523 | for cap in required_cap: |
| 524 | if cap not in self.faft_config.ec_capability: |
| 525 | if not suppress_warning: |
| 526 | logging.warn('Requires EC capability "%s" to run this ' |
| 527 | 'test.', cap) |
| 528 | return False |
| 529 | |
| 530 | return True |
| 531 | |
| 532 | def check_root_part_on_non_recovery(self, part): |
| 533 | """Check the partition number of root device and on normal/dev boot. |
| 534 | |
| 535 | @param part: A string of partition number, e.g.'3'. |
| 536 | @return: True if the root device matched and on normal/dev boot; |
| 537 | otherwise, False. |
| 538 | """ |
| 539 | return self.checkers.root_part_checker(part) and \ |
| 540 | self.checkers.crossystem_checker({ |
| 541 | 'mainfw_type': ('normal', 'developer'), |
| 542 | }) |
| 543 | |
| 544 | def _join_part(self, dev, part): |
| 545 | """Return a concatenated string of device and partition number. |
| 546 | |
| 547 | @param dev: A string of device, e.g.'/dev/sda'. |
| 548 | @param part: A string of partition number, e.g.'3'. |
| 549 | @return: A concatenated string of device and partition number, |
| 550 | e.g.'/dev/sda3'. |
| 551 | |
| 552 | >>> seq = FirmwareTest() |
| 553 | >>> seq._join_part('/dev/sda', '3') |
| 554 | '/dev/sda3' |
| 555 | >>> seq._join_part('/dev/mmcblk0', '2') |
| 556 | '/dev/mmcblk0p2' |
| 557 | """ |
| 558 | if 'mmcblk' in dev: |
| 559 | return dev + 'p' + part |
| 560 | else: |
| 561 | return dev + part |
| 562 | |
| 563 | def copy_kernel_and_rootfs(self, from_part, to_part): |
| 564 | """Copy kernel and rootfs from from_part to to_part. |
| 565 | |
| 566 | @param from_part: A string of partition number to be copied from. |
| 567 | @param to_part: A string of partition number to be copied to. |
| 568 | """ |
| 569 | root_dev = self.faft_client.system.get_root_dev() |
| 570 | logging.info('Copying kernel from %s to %s. Please wait...', |
| 571 | from_part, to_part) |
| 572 | self.faft_client.system.run_shell_command('dd if=%s of=%s bs=4M' % |
| 573 | (self._join_part(root_dev, self.KERNEL_MAP[from_part]), |
| 574 | self._join_part(root_dev, self.KERNEL_MAP[to_part]))) |
| 575 | logging.info('Copying rootfs from %s to %s. Please wait...', |
| 576 | from_part, to_part) |
| 577 | self.faft_client.system.run_shell_command('dd if=%s of=%s bs=4M' % |
| 578 | (self._join_part(root_dev, self.ROOTFS_MAP[from_part]), |
| 579 | self._join_part(root_dev, self.ROOTFS_MAP[to_part]))) |
| 580 | |
| 581 | def ensure_kernel_boot(self, part): |
| 582 | """Ensure the request kernel boot. |
| 583 | |
| 584 | If not, it duplicates the current kernel to the requested kernel |
| 585 | and sets the requested higher priority to ensure it boot. |
| 586 | |
| 587 | @param part: A string of kernel partition number or 'a'/'b'. |
| 588 | """ |
| 589 | if not self.checkers.root_part_checker(part): |
| 590 | if self.faft_client.kernel.diff_a_b(): |
| 591 | self.copy_kernel_and_rootfs( |
| 592 | from_part=self.OTHER_KERNEL_MAP[part], |
| 593 | to_part=part) |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 594 | self.reset_and_prioritize_kernel(part) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 595 | |
| 596 | def set_hardware_write_protect(self, enable): |
| 597 | """Set hardware write protect pin. |
| 598 | |
| 599 | @param enable: True if asserting write protect pin. Otherwise, False. |
| 600 | """ |
| 601 | self.servo.set('fw_wp_vref', self.faft_config.wp_voltage) |
| 602 | self.servo.set('fw_wp_en', 'on') |
| 603 | self.servo.set('fw_wp', 'on' if enable else 'off') |
| 604 | |
| 605 | def set_ec_write_protect_and_reboot(self, enable): |
| 606 | """Set EC write protect status and reboot to take effect. |
| 607 | |
| 608 | The write protect state is only activated if both hardware write |
| 609 | protect pin is asserted and software write protect flag is set. |
| 610 | This method asserts/deasserts hardware write protect pin first, and |
| 611 | set corresponding EC software write protect flag. |
| 612 | |
| 613 | If the device uses non-Chrome EC, set the software write protect via |
| 614 | flashrom. |
| 615 | |
| 616 | If the device uses Chrome EC, a reboot is required for write protect |
| 617 | to take effect. Since the software write protect flag cannot be unset |
| 618 | if hardware write protect pin is asserted, we need to deasserted the |
| 619 | pin first if we are deactivating write protect. Similarly, a reboot |
| 620 | is required before we can modify the software flag. |
| 621 | |
| 622 | @param enable: True if activating EC write protect. Otherwise, False. |
| 623 | """ |
| 624 | self.set_hardware_write_protect(enable) |
| 625 | if self.faft_config.chrome_ec: |
| 626 | self.set_chrome_ec_write_protect_and_reboot(enable) |
| 627 | else: |
| 628 | self.faft_client.ec.set_write_protect(enable) |
Tom Wai-Hong Tam | a704f18 | 2015-05-06 06:12:55 +0800 | [diff] [blame] | 629 | self.switcher.mode_aware_reboot() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 630 | |
| 631 | def set_chrome_ec_write_protect_and_reboot(self, enable): |
| 632 | """Set Chrome EC write protect status and reboot to take effect. |
| 633 | |
| 634 | @param enable: True if activating EC write protect. Otherwise, False. |
| 635 | """ |
| 636 | if enable: |
| 637 | # Set write protect flag and reboot to take effect. |
| 638 | self.ec.set_flash_write_protect(enable) |
| 639 | self.sync_and_ec_reboot() |
| 640 | else: |
| 641 | # Reboot after deasserting hardware write protect pin to deactivate |
| 642 | # write protect. And then remove software write protect flag. |
| 643 | self.sync_and_ec_reboot() |
| 644 | self.ec.set_flash_write_protect(enable) |
| 645 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 646 | def _setup_ec_write_protect(self, ec_wp): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 647 | """Setup for EC write-protection. |
| 648 | |
| 649 | It makes sure the EC in the requested write-protection state. If not, it |
| 650 | flips the state. Flipping the write-protection requires DUT reboot. |
| 651 | |
| 652 | @param ec_wp: True to request EC write-protected; False to request EC |
| 653 | not write-protected; None to do nothing. |
| 654 | """ |
| 655 | if ec_wp is None: |
| 656 | self._old_ec_wp = None |
| 657 | return |
| 658 | self._old_ec_wp = self.checkers.crossystem_checker({'wpsw_boot': '1'}) |
| 659 | if ec_wp != self._old_ec_wp: |
| 660 | logging.info('The test required EC is %swrite-protected. Reboot ' |
| 661 | 'and flip the state.', '' if ec_wp else 'not ') |
Tom Wai-Hong Tam | 3e92b8e | 2015-05-07 06:29:57 +0800 | [diff] [blame] | 662 | self.switcher.mode_aware_reboot( |
| 663 | 'custom', |
| 664 | lambda:self.set_ec_write_protect_and_reboot(ec_wp)) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 665 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 666 | def _restore_ec_write_protect(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 667 | """Restore the original EC write-protection.""" |
| 668 | if (not hasattr(self, '_old_ec_wp')) or (self._old_ec_wp is None): |
| 669 | return |
| 670 | if not self.checkers.crossystem_checker( |
| 671 | {'wpsw_boot': '1' if self._old_ec_wp else '0'}): |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 672 | logging.info('Restore original EC write protection and reboot.') |
Tom Wai-Hong Tam | 3e92b8e | 2015-05-07 06:29:57 +0800 | [diff] [blame] | 673 | self.switcher.mode_aware_reboot( |
| 674 | 'custom', |
| 675 | lambda:self.set_ec_write_protect_and_reboot( |
| 676 | self._old_ec_wp)) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 677 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 678 | def _setup_uart_capture(self): |
Duncan Laurie | af61c1f | 2014-10-07 15:35:18 -0700 | [diff] [blame] | 679 | """Setup the CPU/EC/PD UART capture.""" |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 680 | self.cpu_uart_file = os.path.join(self.resultsdir, 'cpu_uart.txt') |
| 681 | self.servo.set('cpu_uart_capture', 'on') |
| 682 | self.ec_uart_file = None |
Duncan Laurie | af61c1f | 2014-10-07 15:35:18 -0700 | [diff] [blame] | 683 | self.usbpd_uart_file = None |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 684 | if self.faft_config.chrome_ec: |
| 685 | try: |
| 686 | self.servo.set('ec_uart_capture', 'on') |
| 687 | self.ec_uart_file = os.path.join(self.resultsdir, 'ec_uart.txt') |
| 688 | except error.TestFail as e: |
| 689 | if 'No control named' in str(e): |
| 690 | logging.warn('The servod is too old that ec_uart_capture ' |
| 691 | 'not supported.') |
Duncan Laurie | af61c1f | 2014-10-07 15:35:18 -0700 | [diff] [blame] | 692 | # Log separate PD console if supported |
| 693 | if self.check_ec_capability(['usbpd_uart'], suppress_warning=True): |
| 694 | try: |
| 695 | self.servo.set('usbpd_uart_capture', 'on') |
| 696 | self.usbpd_uart_file = os.path.join(self.resultsdir, |
| 697 | 'usbpd_uart.txt') |
| 698 | except error.TestFail as e: |
| 699 | if 'No control named' in str(e): |
| 700 | logging.warn('The servod is too old that ' |
| 701 | 'usbpd_uart_capture is not supported.') |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 702 | else: |
| 703 | logging.info('Not a Google EC, cannot capture ec console output.') |
| 704 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 705 | def _record_uart_capture(self): |
Duncan Laurie | af61c1f | 2014-10-07 15:35:18 -0700 | [diff] [blame] | 706 | """Record the CPU/EC/PD UART output stream to files.""" |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 707 | if self.cpu_uart_file: |
| 708 | with open(self.cpu_uart_file, 'a') as f: |
| 709 | f.write(ast.literal_eval(self.servo.get('cpu_uart_stream'))) |
| 710 | if self.ec_uart_file and self.faft_config.chrome_ec: |
| 711 | with open(self.ec_uart_file, 'a') as f: |
| 712 | f.write(ast.literal_eval(self.servo.get('ec_uart_stream'))) |
Duncan Laurie | af61c1f | 2014-10-07 15:35:18 -0700 | [diff] [blame] | 713 | if (self.usbpd_uart_file and self.faft_config.chrome_ec and |
| 714 | self.check_ec_capability(['usbpd_uart'], suppress_warning=True)): |
| 715 | with open(self.usbpd_uart_file, 'a') as f: |
| 716 | f.write(ast.literal_eval(self.servo.get('usbpd_uart_stream'))) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 717 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 718 | def _cleanup_uart_capture(self): |
Duncan Laurie | af61c1f | 2014-10-07 15:35:18 -0700 | [diff] [blame] | 719 | """Cleanup the CPU/EC/PD UART capture.""" |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 720 | # Flush the remaining UART output. |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 721 | self._record_uart_capture() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 722 | self.servo.set('cpu_uart_capture', 'off') |
| 723 | if self.ec_uart_file and self.faft_config.chrome_ec: |
| 724 | self.servo.set('ec_uart_capture', 'off') |
Duncan Laurie | af61c1f | 2014-10-07 15:35:18 -0700 | [diff] [blame] | 725 | if (self.usbpd_uart_file and self.faft_config.chrome_ec and |
| 726 | self.check_ec_capability(['usbpd_uart'], suppress_warning=True)): |
| 727 | self.servo.set('usbpd_uart_capture', 'off') |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 728 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 729 | def _fetch_servo_log(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 730 | """Fetch the servo log.""" |
| 731 | cmd = '[ -e %s ] && cat %s || echo NOTFOUND' % ((self._SERVOD_LOG,) * 2) |
| 732 | servo_log = self.servo.system_output(cmd) |
| 733 | return None if servo_log == 'NOTFOUND' else servo_log |
| 734 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 735 | def _setup_servo_log(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 736 | """Setup the servo log capturing.""" |
| 737 | self.servo_log_original_len = -1 |
| 738 | if self.servo.is_localhost(): |
| 739 | # No servo log recorded when servod runs locally. |
| 740 | return |
| 741 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 742 | servo_log = self._fetch_servo_log() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 743 | if servo_log: |
| 744 | self.servo_log_original_len = len(servo_log) |
| 745 | else: |
| 746 | logging.warn('Servo log file not found.') |
| 747 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 748 | def _record_servo_log(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 749 | """Record the servo log to the results directory.""" |
| 750 | if self.servo_log_original_len != -1: |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 751 | servo_log = self._fetch_servo_log() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 752 | servo_log_file = os.path.join(self.resultsdir, 'servod.log') |
| 753 | with open(servo_log_file, 'a') as f: |
| 754 | f.write(servo_log[self.servo_log_original_len:]) |
| 755 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 756 | def _record_faft_client_log(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 757 | """Record the faft client log to the results directory.""" |
| 758 | client_log = self.faft_client.system.dump_log(True) |
| 759 | client_log_file = os.path.join(self.resultsdir, 'faft_client.log') |
| 760 | with open(client_log_file, 'w') as f: |
| 761 | f.write(client_log) |
| 762 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 763 | def _setup_gbb_flags(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 764 | """Setup the GBB flags for FAFT test.""" |
| 765 | if self.faft_config.gbb_version < 1.1: |
| 766 | logging.info('Skip modifying GBB on versions older than 1.1.') |
| 767 | return |
| 768 | |
| 769 | if self.check_setup_done('gbb_flags'): |
| 770 | return |
| 771 | |
| 772 | self._backup_gbb_flags = self.faft_client.bios.get_gbb_flags() |
| 773 | |
| 774 | logging.info('Set proper GBB flags for test.') |
| 775 | self.clear_set_gbb_flags(vboot.GBB_FLAG_DEV_SCREEN_SHORT_DELAY | |
| 776 | vboot.GBB_FLAG_FORCE_DEV_SWITCH_ON | |
| 777 | vboot.GBB_FLAG_FORCE_DEV_BOOT_USB | |
| 778 | vboot.GBB_FLAG_DISABLE_FW_ROLLBACK_CHECK, |
| 779 | vboot.GBB_FLAG_ENTER_TRIGGERS_TONORM | |
| 780 | vboot.GBB_FLAG_FAFT_KEY_OVERIDE) |
| 781 | self.mark_setup_done('gbb_flags') |
| 782 | |
| 783 | def drop_backup_gbb_flags(self): |
| 784 | """Drops the backup GBB flags. |
| 785 | |
| 786 | This can be used when a test intends to permanently change GBB flags. |
| 787 | """ |
| 788 | self._backup_gbb_flags = None |
| 789 | |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 790 | def _restore_gbb_flags(self): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 791 | """Restore GBB flags to their original state.""" |
| 792 | if not self._backup_gbb_flags: |
| 793 | return |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 794 | self._write_gbb_flags(self._backup_gbb_flags) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 795 | self.unmark_setup_done('gbb_flags') |
| 796 | |
| 797 | def setup_tried_fwb(self, tried_fwb): |
| 798 | """Setup for fw B tried state. |
| 799 | |
| 800 | It makes sure the system in the requested fw B tried state. If not, it |
| 801 | tries to do so. |
| 802 | |
| 803 | @param tried_fwb: True if requested in tried_fwb=1; |
| 804 | False if tried_fwb=0. |
| 805 | """ |
| 806 | if tried_fwb: |
| 807 | if not self.checkers.crossystem_checker({'tried_fwb': '1'}): |
| 808 | logging.info( |
| 809 | 'Firmware is not booted with tried_fwb. Reboot into it.') |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 810 | self.faft_client.system.set_try_fw_b() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 811 | else: |
| 812 | if not self.checkers.crossystem_checker({'tried_fwb': '0'}): |
| 813 | logging.info( |
| 814 | 'Firmware is booted with tried_fwb. Reboot to clear.') |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 815 | |
| 816 | def power_on(self): |
| 817 | """Switch DUT AC power on.""" |
| 818 | self._client.power_on(self.power_control) |
| 819 | |
| 820 | def power_off(self): |
| 821 | """Switch DUT AC power off.""" |
| 822 | self._client.power_off(self.power_control) |
| 823 | |
| 824 | def power_cycle(self): |
| 825 | """Power cycle DUT AC power.""" |
| 826 | self._client.power_cycle(self.power_control) |
| 827 | |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 828 | def setup_rw_boot(self, section='a'): |
| 829 | """Make sure firmware is in RW-boot mode. |
| 830 | |
| 831 | If the given firmware section is in RO-boot mode, turn off the RO-boot |
| 832 | flag and reboot DUT into RW-boot mode. |
| 833 | |
| 834 | @param section: A firmware section, either 'a' or 'b'. |
| 835 | """ |
| 836 | flags = self.faft_client.bios.get_preamble_flags(section) |
| 837 | if flags & vboot.PREAMBLE_USE_RO_NORMAL: |
| 838 | flags = flags ^ vboot.PREAMBLE_USE_RO_NORMAL |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 839 | self.faft_client.bios.set_preamble_flags(section, flags) |
Tom Wai-Hong Tam | 4777624 | 2015-05-07 02:45:32 +0800 | [diff] [blame] | 840 | self.switcher.mode_aware_reboot() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 841 | |
| 842 | def setup_kernel(self, part): |
| 843 | """Setup for kernel test. |
| 844 | |
| 845 | It makes sure both kernel A and B bootable and the current boot is |
| 846 | the requested kernel part. |
| 847 | |
| 848 | @param part: A string of kernel partition number or 'a'/'b'. |
| 849 | """ |
| 850 | self.ensure_kernel_boot(part) |
| 851 | logging.info('Checking the integrity of kernel B and rootfs B...') |
| 852 | if (self.faft_client.kernel.diff_a_b() or |
| 853 | not self.faft_client.rootfs.verify_rootfs('B')): |
| 854 | logging.info('Copying kernel and rootfs from A to B...') |
| 855 | self.copy_kernel_and_rootfs(from_part=part, |
| 856 | to_part=self.OTHER_KERNEL_MAP[part]) |
| 857 | self.reset_and_prioritize_kernel(part) |
| 858 | |
| 859 | def reset_and_prioritize_kernel(self, part): |
| 860 | """Make the requested partition highest priority. |
| 861 | |
| 862 | This function also reset kerenl A and B to bootable. |
| 863 | |
| 864 | @param part: A string of partition number to be prioritized. |
| 865 | """ |
| 866 | root_dev = self.faft_client.system.get_root_dev() |
| 867 | # Reset kernel A and B to bootable. |
| 868 | self.faft_client.system.run_shell_command( |
| 869 | 'cgpt add -i%s -P1 -S1 -T0 %s' % (self.KERNEL_MAP['a'], root_dev)) |
| 870 | self.faft_client.system.run_shell_command( |
| 871 | 'cgpt add -i%s -P1 -S1 -T0 %s' % (self.KERNEL_MAP['b'], root_dev)) |
| 872 | # Set kernel part highest priority. |
| 873 | self.faft_client.system.run_shell_command('cgpt prioritize -i%s %s' % |
| 874 | (self.KERNEL_MAP[part], root_dev)) |
| 875 | |
Yusuf Mohsinally | 1bacc96 | 2014-08-14 11:37:32 -0700 | [diff] [blame] | 876 | def blocking_sync(self): |
| 877 | """Run a blocking sync command.""" |
| 878 | # The double calls to sync fakes a blocking call |
| 879 | # since the first call returns before the flush |
| 880 | # is complete, but the second will wait for the |
| 881 | # first to finish. |
| 882 | self.faft_client.system.run_shell_command('sync') |
| 883 | self.faft_client.system.run_shell_command('sync') |
| 884 | |
Ryan Lin | 5bee610 | 2014-09-16 13:17:02 -0700 | [diff] [blame] | 885 | # sync only sends SYNCHRONIZE_CACHE but doesn't |
Steve Fung | b575242 | 2015-01-09 16:45:32 -0800 | [diff] [blame] | 886 | # check the status. For mmc devices, use `mmc |
| 887 | # status get` command to send an empty command to |
| 888 | # wait for the disk to be available again. For |
| 889 | # other devices, hdparm sends TUR to check if |
Ryan Lin | 5bee610 | 2014-09-16 13:17:02 -0700 | [diff] [blame] | 890 | # a device is ready for transfer operation. |
| 891 | root_dev = self.faft_client.system.get_root_dev() |
Steve Fung | b575242 | 2015-01-09 16:45:32 -0800 | [diff] [blame] | 892 | if 'mmcblk' in root_dev: |
| 893 | self.faft_client.system.run_shell_command('mmc status get %s' % |
| 894 | root_dev) |
| 895 | else: |
| 896 | self.faft_client.system.run_shell_command('hdparm -f %s' % root_dev) |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 897 | |
Tom Wai-Hong Tam | eeed7fb | 2015-05-08 09:43:29 +0800 | [diff] [blame] | 898 | def wait_for_kernel_up(self): |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 899 | """ |
| 900 | Helper function that waits for the device to boot up to kernel. |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 901 | """ |
| 902 | logging.info("-[FAFT]-[ start wait_for_kernel_up ]---") |
Duncan Laurie | b3abc43 | 2014-10-07 15:48:15 -0700 | [diff] [blame] | 903 | # Wait for the system to respond to ping before attempting ssh |
| 904 | if not self._client.ping_wait_up(90): |
| 905 | logging.warning("-[FAFT]-[ system did not respond to ping ]") |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 906 | try: |
Tom Wai-Hong Tam | eeed7fb | 2015-05-08 09:43:29 +0800 | [diff] [blame] | 907 | self.wait_for_client() |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 908 | # Stop update-engine as it may change firmware/kernel. |
Yusuf Mohsinally | 8b377eb | 2014-05-12 18:50:03 -0700 | [diff] [blame] | 909 | self._stop_service('update-engine') |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 910 | except ConnectionError: |
| 911 | logging.error('wait_for_client() timed out.') |
Yusuf Mohsinally | 64ee3a7 | 2014-06-26 10:24:27 -0700 | [diff] [blame] | 912 | self._restore_routine_from_timeout() |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 913 | logging.info("-[FAFT]-[ end wait_for_kernel_up ]-----") |
| 914 | |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 915 | def sync_and_ec_reboot(self, flags=''): |
| 916 | """Request the client sync and do a EC triggered reboot. |
| 917 | |
| 918 | @param flags: Optional, a space-separated string of flags passed to EC |
| 919 | reboot command, including: |
| 920 | default: EC soft reboot; |
| 921 | 'hard': EC cold/hard reboot. |
| 922 | """ |
Yusuf Mohsinally | 1bacc96 | 2014-08-14 11:37:32 -0700 | [diff] [blame] | 923 | self.blocking_sync() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 924 | self.ec.reboot(flags) |
| 925 | time.sleep(self.faft_config.ec_boot_to_console) |
| 926 | self.check_lid_and_power_on() |
| 927 | |
Julius Werner | 18c4e16 | 2015-07-07 13:02:08 -0700 | [diff] [blame] | 928 | def reboot_and_reset_tpm(self): |
| 929 | """Reboot into recovery mode, reset TPM, then reboot back to disk.""" |
| 930 | self.switcher.reboot_to_mode(to_mode='rec') |
| 931 | self.faft_client.system.run_shell_command('chromeos-tpm-recovery') |
Tom Wai-Hong Tam | a704f18 | 2015-05-06 06:12:55 +0800 | [diff] [blame] | 932 | self.switcher.mode_aware_reboot() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 933 | |
| 934 | def full_power_off_and_on(self): |
| 935 | """Shutdown the device by pressing power button and power on again.""" |
Danny Chan | 101b0b2 | 2014-11-06 10:08:54 -0800 | [diff] [blame] | 936 | boot_id = self.get_bootid() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 937 | # Press power button to trigger Chrome OS normal shutdown process. |
| 938 | # We use a customized delay since the normal-press 1.2s is not enough. |
David Hendricks | 25d703a | 2015-08-21 14:37:51 -0700 | [diff] [blame] | 939 | self.servo.power_key(self.faft_config.hold_pwr_button_poweroff) |
Danny Chan | 101b0b2 | 2014-11-06 10:08:54 -0800 | [diff] [blame] | 940 | # device can take 44-51 seconds to restart, |
| 941 | # add buffer from the default timeout of 60 seconds. |
| 942 | self.wait_for_client_offline(timeout=100, orig_boot_id=boot_id) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 943 | time.sleep(self.faft_config.shutdown) |
| 944 | # Short press power button to boot DUT again. |
David Hendricks | 25d703a | 2015-08-21 14:37:51 -0700 | [diff] [blame] | 945 | self.servo.power_key(self.faft_config.hold_pwr_button_poweron) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 946 | |
| 947 | def check_lid_and_power_on(self): |
| 948 | """ |
| 949 | On devices with EC software sync, system powers on after EC reboots if |
| 950 | lid is open. Otherwise, the EC shuts down CPU after about 3 seconds. |
| 951 | This method checks lid switch state and presses power button if |
| 952 | necessary. |
| 953 | """ |
| 954 | if self.servo.get("lid_open") == "no": |
| 955 | time.sleep(self.faft_config.software_sync) |
| 956 | self.servo.power_short_press() |
| 957 | |
| 958 | def _modify_usb_kernel(self, usb_dev, from_magic, to_magic): |
| 959 | """Modify the kernel header magic in USB stick. |
| 960 | |
| 961 | The kernel header magic is the first 8-byte of kernel partition. |
| 962 | We modify it to make it fail on kernel verification check. |
| 963 | |
| 964 | @param usb_dev: A string of USB stick path on the host, like '/dev/sdc'. |
| 965 | @param from_magic: A string of magic which we change it from. |
| 966 | @param to_magic: A string of magic which we change it to. |
| 967 | @raise TestError: if failed to change magic. |
| 968 | """ |
| 969 | assert len(from_magic) == 8 |
| 970 | assert len(to_magic) == 8 |
| 971 | # USB image only contains one kernel. |
| 972 | kernel_part = self._join_part(usb_dev, self.KERNEL_MAP['a']) |
| 973 | read_cmd = "sudo dd if=%s bs=8 count=1 2>/dev/null" % kernel_part |
| 974 | current_magic = self.servo.system_output(read_cmd) |
| 975 | if current_magic == to_magic: |
| 976 | logging.info("The kernel magic is already %s.", current_magic) |
| 977 | return |
| 978 | if current_magic != from_magic: |
| 979 | raise error.TestError("Invalid kernel image on USB: wrong magic.") |
| 980 | |
| 981 | logging.info('Modify the kernel magic in USB, from %s to %s.', |
| 982 | from_magic, to_magic) |
| 983 | write_cmd = ("echo -n '%s' | sudo dd of=%s oflag=sync conv=notrunc " |
| 984 | " 2>/dev/null" % (to_magic, kernel_part)) |
| 985 | self.servo.system(write_cmd) |
| 986 | |
| 987 | if self.servo.system_output(read_cmd) != to_magic: |
| 988 | raise error.TestError("Failed to write new magic.") |
| 989 | |
| 990 | def corrupt_usb_kernel(self, usb_dev): |
| 991 | """Corrupt USB kernel by modifying its magic from CHROMEOS to CORRUPTD. |
| 992 | |
| 993 | @param usb_dev: A string of USB stick path on the host, like '/dev/sdc'. |
| 994 | """ |
| 995 | self._modify_usb_kernel(usb_dev, self.CHROMEOS_MAGIC, |
| 996 | self.CORRUPTED_MAGIC) |
| 997 | |
| 998 | def restore_usb_kernel(self, usb_dev): |
| 999 | """Restore USB kernel by modifying its magic from CORRUPTD to CHROMEOS. |
| 1000 | |
| 1001 | @param usb_dev: A string of USB stick path on the host, like '/dev/sdc'. |
| 1002 | """ |
| 1003 | self._modify_usb_kernel(usb_dev, self.CORRUPTED_MAGIC, |
| 1004 | self.CHROMEOS_MAGIC) |
| 1005 | |
| 1006 | def _call_action(self, action_tuple, check_status=False): |
| 1007 | """Call the action function with/without arguments. |
| 1008 | |
| 1009 | @param action_tuple: A function, or a tuple (function, args, error_msg), |
| 1010 | in which, args and error_msg are optional. args is |
| 1011 | either a value or a tuple if multiple arguments. |
| 1012 | This can also be a list containing multiple |
| 1013 | function or tuple. In this case, these actions are |
| 1014 | called in sequence. |
| 1015 | @param check_status: Check the return value of action function. If not |
| 1016 | succeed, raises a TestFail exception. |
| 1017 | @return: The result value of the action function. |
| 1018 | @raise TestError: An error when the action function is not callable. |
| 1019 | @raise TestFail: When check_status=True, action function not succeed. |
| 1020 | """ |
| 1021 | if isinstance(action_tuple, list): |
| 1022 | return all([self._call_action(action, check_status=check_status) |
| 1023 | for action in action_tuple]) |
| 1024 | |
| 1025 | action = action_tuple |
| 1026 | args = () |
| 1027 | error_msg = 'Not succeed' |
| 1028 | if isinstance(action_tuple, tuple): |
| 1029 | action = action_tuple[0] |
| 1030 | if len(action_tuple) >= 2: |
| 1031 | args = action_tuple[1] |
| 1032 | if not isinstance(args, tuple): |
| 1033 | args = (args,) |
| 1034 | if len(action_tuple) >= 3: |
| 1035 | error_msg = action_tuple[2] |
| 1036 | |
| 1037 | if action is None: |
| 1038 | return |
| 1039 | |
| 1040 | if not callable(action): |
| 1041 | raise error.TestError('action is not callable!') |
| 1042 | |
| 1043 | info_msg = 'calling %s' % str(action) |
| 1044 | if args: |
| 1045 | info_msg += ' with args %s' % str(args) |
| 1046 | logging.info(info_msg) |
| 1047 | ret = action(*args) |
| 1048 | |
| 1049 | if check_status and not ret: |
| 1050 | raise error.TestFail('%s: %s returning %s' % |
| 1051 | (error_msg, info_msg, str(ret))) |
| 1052 | return ret |
| 1053 | |
| 1054 | def run_shutdown_process(self, shutdown_action, pre_power_action=None, |
| 1055 | post_power_action=None, shutdown_timeout=None): |
| 1056 | """Run shutdown_action(), which makes DUT shutdown, and power it on. |
| 1057 | |
| 1058 | @param shutdown_action: function which makes DUT shutdown, like |
| 1059 | pressing power key. |
| 1060 | @param pre_power_action: function which is called before next power on. |
| 1061 | @param post_power_action: function which is called after next power on. |
| 1062 | @param shutdown_timeout: a timeout to confirm DUT shutdown. |
| 1063 | @raise TestFail: if the shutdown_action() failed to turn DUT off. |
| 1064 | """ |
| 1065 | self._call_action(shutdown_action) |
| 1066 | logging.info('Wait to ensure DUT shut down...') |
| 1067 | try: |
| 1068 | if shutdown_timeout is None: |
| 1069 | shutdown_timeout = self.faft_config.shutdown_timeout |
| 1070 | self.wait_for_client(timeout=shutdown_timeout) |
| 1071 | raise error.TestFail( |
| 1072 | 'Should shut the device down after calling %s.' % |
| 1073 | str(shutdown_action)) |
| 1074 | except ConnectionError: |
| 1075 | logging.info( |
| 1076 | 'DUT is surely shutdown. We are going to power it on again...') |
| 1077 | |
| 1078 | if pre_power_action: |
| 1079 | self._call_action(pre_power_action) |
David Hendricks | 25d703a | 2015-08-21 14:37:51 -0700 | [diff] [blame] | 1080 | self.servo.power_key(self.faft_config.hold_pwr_button_poweron) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1081 | if post_power_action: |
| 1082 | self._call_action(post_power_action) |
| 1083 | |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1084 | def get_bootid(self, retry=3): |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1085 | """ |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1086 | Return the bootid. |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1087 | """ |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1088 | boot_id = None |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1089 | while retry: |
| 1090 | try: |
| 1091 | boot_id = self._client.get_boot_id() |
| 1092 | break |
| 1093 | except error.AutoservRunError: |
| 1094 | retry -= 1 |
| 1095 | if retry: |
| 1096 | logging.info('Retry to get boot_id...') |
| 1097 | else: |
| 1098 | logging.warning('Failed to get boot_id.') |
| 1099 | logging.info('boot_id: %s', boot_id) |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1100 | return boot_id |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1101 | |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1102 | def check_state(self, func): |
| 1103 | """ |
| 1104 | Wrapper around _call_action with check_status set to True. This is a |
| 1105 | helper function to be used by tests and is currently implemented by |
| 1106 | calling _call_action with check_status=True. |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1107 | |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1108 | TODO: This function's arguments need to be made more stringent. And |
| 1109 | its functionality should be moved over to check functions directly in |
| 1110 | the future. |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1111 | |
Yusuf Mohsinally | ab1b5fc | 2014-05-08 12:46:10 -0700 | [diff] [blame] | 1112 | @param func: A function, or a tuple (function, args, error_msg), |
| 1113 | in which, args and error_msg are optional. args is |
| 1114 | either a value or a tuple if multiple arguments. |
| 1115 | This can also be a list containing multiple |
| 1116 | function or tuple. In this case, these actions are |
| 1117 | called in sequence. |
| 1118 | @return: The result value of the action function. |
| 1119 | @raise TestFail: If the function does notsucceed. |
| 1120 | """ |
| 1121 | logging.info("-[FAFT]-[ start stepstate_checker ]----------") |
| 1122 | self._call_action(func, check_status=True) |
| 1123 | logging.info("-[FAFT]-[ end state_checker ]----------------") |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1124 | |
| 1125 | def get_current_firmware_sha(self): |
| 1126 | """Get current firmware sha of body and vblock. |
| 1127 | |
| 1128 | @return: Current firmware sha follows the order ( |
| 1129 | vblock_a_sha, body_a_sha, vblock_b_sha, body_b_sha) |
| 1130 | """ |
| 1131 | current_firmware_sha = (self.faft_client.bios.get_sig_sha('a'), |
| 1132 | self.faft_client.bios.get_body_sha('a'), |
| 1133 | self.faft_client.bios.get_sig_sha('b'), |
| 1134 | self.faft_client.bios.get_body_sha('b')) |
| 1135 | if not all(current_firmware_sha): |
| 1136 | raise error.TestError('Failed to get firmware sha.') |
| 1137 | return current_firmware_sha |
| 1138 | |
| 1139 | def is_firmware_changed(self): |
| 1140 | """Check if the current firmware changed, by comparing its SHA. |
| 1141 | |
| 1142 | @return: True if it is changed, otherwise Flase. |
| 1143 | """ |
| 1144 | # Device may not be rebooted after test. |
| 1145 | self.faft_client.bios.reload() |
| 1146 | |
| 1147 | current_sha = self.get_current_firmware_sha() |
| 1148 | |
| 1149 | if current_sha == self._backup_firmware_sha: |
| 1150 | return False |
| 1151 | else: |
| 1152 | corrupt_VBOOTA = (current_sha[0] != self._backup_firmware_sha[0]) |
| 1153 | corrupt_FVMAIN = (current_sha[1] != self._backup_firmware_sha[1]) |
| 1154 | corrupt_VBOOTB = (current_sha[2] != self._backup_firmware_sha[2]) |
| 1155 | corrupt_FVMAINB = (current_sha[3] != self._backup_firmware_sha[3]) |
| 1156 | logging.info("Firmware changed:") |
| 1157 | logging.info('VBOOTA is changed: %s', corrupt_VBOOTA) |
| 1158 | logging.info('VBOOTB is changed: %s', corrupt_VBOOTB) |
| 1159 | logging.info('FVMAIN is changed: %s', corrupt_FVMAIN) |
| 1160 | logging.info('FVMAINB is changed: %s', corrupt_FVMAINB) |
| 1161 | return True |
| 1162 | |
| 1163 | def backup_firmware(self, suffix='.original'): |
| 1164 | """Backup firmware to file, and then send it to host. |
| 1165 | |
| 1166 | @param suffix: a string appended to backup file name |
| 1167 | """ |
| 1168 | remote_temp_dir = self.faft_client.system.create_temp_dir() |
Tom Wai-Hong Tam | e1d5e66 | 2015-08-26 05:29:54 +0800 | [diff] [blame^] | 1169 | remote_bios_path = os.path.join(remote_temp_dir, 'bios') |
| 1170 | self.faft_client.bios.dump_whole(remote_bios_path) |
| 1171 | self._client.get_file(remote_bios_path, |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1172 | os.path.join(self.resultsdir, 'bios' + suffix)) |
Tom Wai-Hong Tam | e1d5e66 | 2015-08-26 05:29:54 +0800 | [diff] [blame^] | 1173 | self._client.run('rm -rf %s' % remote_temp_dir) |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1174 | logging.info('Backup firmware stored in %s with suffix %s', |
| 1175 | self.resultsdir, suffix) |
| 1176 | |
Tom Wai-Hong Tam | e1d5e66 | 2015-08-26 05:29:54 +0800 | [diff] [blame^] | 1177 | self._backup_firmware_sha = self.get_current_firmware_sha() |
| 1178 | |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1179 | def is_firmware_saved(self): |
| 1180 | """Check if a firmware saved (called backup_firmware before). |
| 1181 | |
| 1182 | @return: True if the firmware is backuped; otherwise False. |
| 1183 | """ |
| 1184 | return self._backup_firmware_sha != () |
| 1185 | |
| 1186 | def clear_saved_firmware(self): |
| 1187 | """Clear the firmware saved by the method backup_firmware.""" |
| 1188 | self._backup_firmware_sha = () |
| 1189 | |
| 1190 | def restore_firmware(self, suffix='.original'): |
| 1191 | """Restore firmware from host in resultsdir. |
| 1192 | |
| 1193 | @param suffix: a string appended to backup file name |
| 1194 | """ |
| 1195 | if not self.is_firmware_changed(): |
| 1196 | return |
| 1197 | |
| 1198 | # Backup current corrupted firmware. |
| 1199 | self.backup_firmware(suffix='.corrupt') |
| 1200 | |
| 1201 | # Restore firmware. |
| 1202 | remote_temp_dir = self.faft_client.system.create_temp_dir() |
| 1203 | self._client.send_file(os.path.join(self.resultsdir, 'bios' + suffix), |
| 1204 | os.path.join(remote_temp_dir, 'bios')) |
| 1205 | |
| 1206 | self.faft_client.bios.write_whole( |
| 1207 | os.path.join(remote_temp_dir, 'bios')) |
Tom Wai-Hong Tam | a704f18 | 2015-05-06 06:12:55 +0800 | [diff] [blame] | 1208 | self.switcher.mode_aware_reboot() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1209 | logging.info('Successfully restore firmware.') |
| 1210 | |
| 1211 | def setup_firmwareupdate_shellball(self, shellball=None): |
| 1212 | """Deside a shellball to use in firmware update test. |
| 1213 | |
| 1214 | Check if there is a given shellball, and it is a shell script. Then, |
| 1215 | send it to the remote host. Otherwise, use |
| 1216 | /usr/sbin/chromeos-firmwareupdate. |
| 1217 | |
| 1218 | @param shellball: path of a shellball or default to None. |
| 1219 | |
| 1220 | @return: Path of shellball in remote host. If use default shellball, |
| 1221 | reutrn None. |
| 1222 | """ |
| 1223 | updater_path = None |
| 1224 | if shellball: |
| 1225 | # Determine the firmware file is a shellball or a raw binary. |
| 1226 | is_shellball = (utils.system_output("file %s" % shellball).find( |
| 1227 | "shell script") != -1) |
| 1228 | if is_shellball: |
| 1229 | logging.info('Device will update firmware with shellball %s', |
| 1230 | shellball) |
| 1231 | temp_dir = self.faft_client.system.create_temp_dir( |
| 1232 | 'shellball_') |
| 1233 | temp_shellball = os.path.join(temp_dir, 'updater.sh') |
| 1234 | self._client.send_file(shellball, temp_shellball) |
| 1235 | updater_path = temp_shellball |
| 1236 | else: |
| 1237 | raise error.TestFail( |
| 1238 | 'The given shellball is not a shell script.') |
| 1239 | return updater_path |
| 1240 | |
| 1241 | def is_kernel_changed(self): |
| 1242 | """Check if the current kernel is changed, by comparing its SHA1 hash. |
| 1243 | |
| 1244 | @return: True if it is changed; otherwise, False. |
| 1245 | """ |
| 1246 | changed = False |
| 1247 | for p in ('A', 'B'): |
| 1248 | backup_sha = self._backup_kernel_sha.get(p, None) |
| 1249 | current_sha = self.faft_client.kernel.get_sha(p) |
| 1250 | if backup_sha != current_sha: |
| 1251 | changed = True |
| 1252 | logging.info('Kernel %s is changed', p) |
| 1253 | return changed |
| 1254 | |
| 1255 | def backup_kernel(self, suffix='.original'): |
| 1256 | """Backup kernel to files, and the send them to host. |
| 1257 | |
| 1258 | @param suffix: a string appended to backup file name. |
| 1259 | """ |
| 1260 | remote_temp_dir = self.faft_client.system.create_temp_dir() |
| 1261 | for p in ('A', 'B'): |
| 1262 | remote_path = os.path.join(remote_temp_dir, 'kernel_%s' % p) |
| 1263 | self.faft_client.kernel.dump(p, remote_path) |
| 1264 | self._client.get_file( |
| 1265 | remote_path, |
| 1266 | os.path.join(self.resultsdir, 'kernel_%s%s' % (p, suffix))) |
| 1267 | self._backup_kernel_sha[p] = self.faft_client.kernel.get_sha(p) |
| 1268 | logging.info('Backup kernel stored in %s with suffix %s', |
| 1269 | self.resultsdir, suffix) |
| 1270 | |
| 1271 | def is_kernel_saved(self): |
| 1272 | """Check if kernel images are saved (backup_kernel called before). |
| 1273 | |
| 1274 | @return: True if the kernel is saved; otherwise, False. |
| 1275 | """ |
| 1276 | return len(self._backup_kernel_sha) != 0 |
| 1277 | |
| 1278 | def clear_saved_kernel(self): |
| 1279 | """Clear the kernel saved by backup_kernel().""" |
| 1280 | self._backup_kernel_sha = dict() |
| 1281 | |
| 1282 | def restore_kernel(self, suffix='.original'): |
| 1283 | """Restore kernel from host in resultsdir. |
| 1284 | |
| 1285 | @param suffix: a string appended to backup file name. |
| 1286 | """ |
| 1287 | if not self.is_kernel_changed(): |
| 1288 | return |
| 1289 | |
| 1290 | # Backup current corrupted kernel. |
| 1291 | self.backup_kernel(suffix='.corrupt') |
| 1292 | |
| 1293 | # Restore kernel. |
| 1294 | remote_temp_dir = self.faft_client.system.create_temp_dir() |
| 1295 | for p in ('A', 'B'): |
| 1296 | remote_path = os.path.join(remote_temp_dir, 'kernel_%s' % p) |
| 1297 | self._client.send_file( |
| 1298 | os.path.join(self.resultsdir, 'kernel_%s%s' % (p, suffix)), |
| 1299 | remote_path) |
| 1300 | self.faft_client.kernel.write(p, remote_path) |
| 1301 | |
Tom Wai-Hong Tam | a704f18 | 2015-05-06 06:12:55 +0800 | [diff] [blame] | 1302 | self.switcher.mode_aware_reboot() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1303 | logging.info('Successfully restored kernel.') |
| 1304 | |
| 1305 | def backup_cgpt_attributes(self): |
| 1306 | """Backup CGPT partition table attributes.""" |
| 1307 | self._backup_cgpt_attr = self.faft_client.cgpt.get_attributes() |
| 1308 | |
| 1309 | def restore_cgpt_attributes(self): |
| 1310 | """Restore CGPT partition table attributes.""" |
| 1311 | current_table = self.faft_client.cgpt.get_attributes() |
| 1312 | if current_table == self._backup_cgpt_attr: |
| 1313 | return |
| 1314 | logging.info('CGPT table is changed. Original: %r. Current: %r.', |
| 1315 | self._backup_cgpt_attr, |
| 1316 | current_table) |
| 1317 | self.faft_client.cgpt.set_attributes(self._backup_cgpt_attr) |
| 1318 | |
Tom Wai-Hong Tam | a704f18 | 2015-05-06 06:12:55 +0800 | [diff] [blame] | 1319 | self.switcher.mode_aware_reboot() |
Yusuf Mohsinally | 05c3c55 | 2014-05-07 23:56:42 -0700 | [diff] [blame] | 1320 | logging.info('Successfully restored CGPT table.') |
Shelley Chen | 3edea98 | 2014-12-30 14:54:21 -0800 | [diff] [blame] | 1321 | |
| 1322 | def try_fwb(self, count=0): |
| 1323 | """set to try booting FWB count # times |
| 1324 | |
| 1325 | Wrapper to set fwb_tries for vboot1 and fw_try_count,fw_try_next for |
| 1326 | vboot2 |
| 1327 | |
| 1328 | @param count: an integer specifying value to program into |
| 1329 | fwb_tries(vb1)/fw_try_next(vb2) |
| 1330 | """ |
| 1331 | if self.fw_vboot2: |
| 1332 | self.faft_client.system.set_fw_try_next('B', count) |
| 1333 | else: |
| 1334 | # vboot1: we need to boot into fwb at least once |
| 1335 | if not count: |
| 1336 | count = count + 1 |
| 1337 | self.faft_client.system.set_try_fw_b(count) |
| 1338 | |