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