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