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