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