blob: 74198266edfe770da70afc5e60023e9ec82e7edc [file] [log] [blame]
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001# Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import ast
6import ctypes
7import logging
8import os
9import re
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -070010import time
11import uuid
12
13from autotest_lib.client.bin import utils
14from autotest_lib.client.common_lib import error
15from autotest_lib.server import autotest
J. Richard Barnettecab6be32014-07-17 13:07:39 -070016from autotest_lib.server import test
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -070017from autotest_lib.server.cros import vboot_constants as vboot
18from autotest_lib.server.cros.faft.config.config import Config as FAFTConfig
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -070019from autotest_lib.server.cros.faft.rpc_proxy import RPCProxy
J. Richard Barnettea57ff842014-06-05 10:00:31 -070020from autotest_lib.server.cros.faft.utils.faft_checkers import FAFTCheckers
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -070021from autotest_lib.server.cros.servo import chrome_ec
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -070022
23
24class ConnectionError(Exception):
25 """Raised on an error of connecting DUT."""
26 pass
27
28
J. Richard Barnettecab6be32014-07-17 13:07:39 -070029class FAFTBase(test.test):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -070030 """The base class of FAFT classes.
31
32 It launches the FAFTClient on DUT, such that the test can access its
33 firmware functions and interfaces. It also provides some methods to
34 handle the reboot mechanism, in order to ensure FAFTClient is still
35 connected after reboot.
36 """
37 def initialize(self, host):
38 """Create a FAFTClient object and install the dependency."""
J. Richard Barnettecab6be32014-07-17 13:07:39 -070039 self.servo = host.servo
40 self.servo.initialize_dut()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -070041 self._client = host
42 self._autotest_client = autotest.Autotest(self._client)
43 self._autotest_client.install()
44 self.faft_client = RPCProxy(host)
Duncan Laurie10eb6182014-10-07 15:39:05 -070045 self.lockfile = '/var/tmp/faft/lock'
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -070046
47 def wait_for_client(self, install_deps=False, timeout=100):
48 """Wait for the client to come back online.
49
50 New remote processes will be launched if their used flags are enabled.
51
52 @param install_deps: If True, install Autotest dependency when ready.
53 @param timeout: Time in seconds to wait for the client SSH daemon to
54 come up.
55 @raise ConnectionError: Failed to connect DUT.
56 """
57 if not self._client.wait_up(timeout):
58 raise ConnectionError()
59 if install_deps:
60 self._autotest_client.install()
61 # Check the FAFT client is avaiable.
62 self.faft_client.system.is_available()
63
64 def wait_for_client_offline(self, timeout=60, orig_boot_id=None):
65 """Wait for the client to come offline.
66
67 @param timeout: Time in seconds to wait the client to come offline.
68 @param orig_boot_id: A string containing the original boot id.
69 @raise ConnectionError: Failed to connect DUT.
70 """
71 # When running against panther, we see that sometimes
72 # ping_wait_down() does not work correctly. There needs to
73 # be some investigation to the root cause.
74 # If we sleep for 120s before running get_boot_id(), it
75 # does succeed. But if we change this to ping_wait_down()
76 # there are implications on the wait time when running
77 # commands at the fw screens.
78 if not self._client.ping_wait_down(timeout):
79 if orig_boot_id and self._client.get_boot_id() != orig_boot_id:
80 logging.warn('Reboot done very quickly.')
81 return
82 raise ConnectionError()
83
84
85class FirmwareTest(FAFTBase):
86 """
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -070087 Base class that sets up helper objects/functions for firmware tests.
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -070088
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -070089 TODO: add documentaion as the FAFT rework progresses.
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -070090 """
91 version = 1
92
93 # Mapping of partition number of kernel and rootfs.
94 KERNEL_MAP = {'a':'2', 'b':'4', '2':'2', '4':'4', '3':'2', '5':'4'}
95 ROOTFS_MAP = {'a':'3', 'b':'5', '2':'3', '4':'5', '3':'3', '5':'5'}
96 OTHER_KERNEL_MAP = {'a':'4', 'b':'2', '2':'4', '4':'2', '3':'4', '5':'2'}
97 OTHER_ROOTFS_MAP = {'a':'5', 'b':'3', '2':'5', '4':'3', '3':'5', '5':'3'}
98
99 CHROMEOS_MAGIC = "CHROMEOS"
100 CORRUPTED_MAGIC = "CORRUPTD"
101
102 _SERVOD_LOG = '/var/log/servod.log'
103
104 _ROOTFS_PARTITION_NUMBER = 3
105
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700106 _backup_firmware_sha = ()
107 _backup_kernel_sha = dict()
108 _backup_cgpt_attr = dict()
109 _backup_gbb_flags = None
110 _backup_dev_mode = None
111
112 # Class level variable, keep track the states of one time setup.
113 # This variable is preserved across tests which inherit this class.
114 _global_setup_done = {
115 'gbb_flags': False,
116 'reimage': False,
117 'usb_check': False,
118 }
119
120 @classmethod
121 def check_setup_done(cls, label):
122 """Check if the given setup is done.
123
124 @param label: The label of the setup.
125 """
126 return cls._global_setup_done[label]
127
128 @classmethod
129 def mark_setup_done(cls, label):
130 """Mark the given setup done.
131
132 @param label: The label of the setup.
133 """
134 cls._global_setup_done[label] = True
135
136 @classmethod
137 def unmark_setup_done(cls, label):
138 """Mark the given setup not done.
139
140 @param label: The label of the setup.
141 """
142 cls._global_setup_done[label] = False
143
144 def initialize(self, host, cmdline_args, ec_wp=None):
145 super(FirmwareTest, self).initialize(host)
146 self.run_id = str(uuid.uuid4())
147 logging.info('FirmwareTest initialize begin (id=%s)', self.run_id)
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700148 # Parse arguments from command line
149 args = {}
150 self.power_control = host.POWER_CONTROL_RPM
151 for arg in cmdline_args:
152 match = re.search("^(\w+)=(.+)", arg)
153 if match:
154 args[match.group(1)] = match.group(2)
155 if 'power_control' in args:
156 self.power_control = args['power_control']
157 if self.power_control not in host.POWER_CONTROL_VALID_ARGS:
158 raise error.TestError('Valid values for --args=power_control '
159 'are %s. But you entered wrong argument '
160 'as "%s".'
161 % (host.POWER_CONTROL_VALID_ARGS,
162 self.power_control))
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700163
164 self.faft_config = FAFTConfig(
165 self.faft_client.system.get_platform_name())
166 self.checkers = FAFTCheckers(self, self.faft_client)
167
168 if self.faft_config.chrome_ec:
169 self.ec = chrome_ec.ChromeEC(self.servo)
170
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700171 self._setup_uart_capture()
172 self._setup_servo_log()
173 self._record_system_info()
174 self._setup_gbb_flags()
175 self._stop_service('update-engine')
Duncan Laurie10eb6182014-10-07 15:39:05 -0700176 self._create_faft_lockfile()
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700177 self._setup_ec_write_protect(ec_wp)
Daisuke Nojiri57c05982014-06-25 15:28:35 -0700178 self.fw_vboot2 = self.faft_client.system.get_fw_vboot2()
179 logging.info('vboot version: %d', 2 if self.fw_vboot2 else 1)
Yusuf Mohsinally1b7a48b2014-05-12 19:25:35 -0700180 # See chromium:239034 regarding needing this sync.
Yusuf Mohsinally1bacc962014-08-14 11:37:32 -0700181 self.blocking_sync()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700182 logging.info('FirmwareTest initialize done (id=%s)', self.run_id)
183
184 def cleanup(self):
185 """Autotest cleanup function."""
186 # Unset state checker in case it's set by subclass
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700187 logging.info('FirmwareTest cleaning up (id=%s)', self.run_id)
188 try:
189 self.faft_client.system.is_available()
190 except:
191 # Remote is not responding. Revive DUT so that subsequent tests
192 # don't fail.
193 self._restore_routine_from_timeout()
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700194 self._restore_dev_mode()
195 self._restore_ec_write_protect()
196 self._restore_gbb_flags()
197 self._start_service('update-engine')
Duncan Laurie10eb6182014-10-07 15:39:05 -0700198 self._remove_faft_lockfile()
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700199 self._record_servo_log()
200 self._record_faft_client_log()
201 self._cleanup_uart_capture()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700202 super(FirmwareTest, self).cleanup()
203 logging.info('FirmwareTest cleanup done (id=%s)', self.run_id)
204
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700205 def _record_system_info(self):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700206 """Record some critical system info to the attr keyval.
207
208 This info is used by generate_test_report and local_dash later.
209 """
210 self.write_attr_keyval({
211 'fw_version': self.faft_client.ec.get_version(),
212 'hwid': self.faft_client.system.get_crossystem_value('hwid'),
213 'fwid': self.faft_client.system.get_crossystem_value('fwid'),
214 })
215
216 def invalidate_firmware_setup(self):
217 """Invalidate all firmware related setup state.
218
219 This method is called when the firmware is re-flashed. It resets all
220 firmware related setup states so that the next test setup properly
221 again.
222 """
223 self.unmark_setup_done('gbb_flags')
224
225 def _retrieve_recovery_reason_from_trap(self):
226 """Try to retrieve the recovery reason from a trapped recovery screen.
227
228 @return: The recovery_reason, 0 if any error.
229 """
230 recovery_reason = 0
231 logging.info('Try to retrieve recovery reason...')
232 if self.servo.get_usbkey_direction() == 'dut':
233 self.wait_fw_screen_and_plug_usb()
234 else:
235 self.servo.switch_usbkey('dut')
236
237 try:
238 self.wait_for_client(install_deps=True)
239 lines = self.faft_client.system.run_shell_command_get_output(
240 'crossystem recovery_reason')
241 recovery_reason = int(lines[0])
242 logging.info('Got the recovery reason %d.', recovery_reason)
243 except ConnectionError:
244 logging.error('Failed to get the recovery reason due to connection '
245 'error.')
246 return recovery_reason
247
248 def _reset_client(self):
249 """Reset client to a workable state.
250
251 This method is called when the client is not responsive. It may be
252 caused by the following cases:
253 - halt on a firmware screen without timeout, e.g. REC_INSERT screen;
254 - corrupted firmware;
255 - corrutped OS image.
256 """
257 # DUT may halt on a firmware screen. Try cold reboot.
258 logging.info('Try cold reboot...')
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -0700259 self.reboot_cold_trigger()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700260 self.wait_for_client_offline()
261 self.wait_dev_screen_and_ctrl_d()
262 try:
263 self.wait_for_client()
264 return
265 except ConnectionError:
266 logging.warn('Cold reboot doesn\'t help, still connection error.')
267
268 # DUT may be broken by a corrupted firmware. Restore firmware.
269 # We assume the recovery boot still works fine. Since the recovery
270 # code is in RO region and all FAFT tests don't change the RO region
271 # except GBB.
272 if self.is_firmware_saved():
273 self._ensure_client_in_recovery()
274 logging.info('Try restore the original firmware...')
275 if self.is_firmware_changed():
276 try:
277 self.restore_firmware()
278 return
279 except ConnectionError:
280 logging.warn('Restoring firmware doesn\'t help, still '
281 'connection error.')
282
283 # Perhaps it's kernel that's broken. Let's try restoring it.
284 if self.is_kernel_saved():
285 self._ensure_client_in_recovery()
286 logging.info('Try restore the original kernel...')
287 if self.is_kernel_changed():
288 try:
289 self.restore_kernel()
290 return
291 except ConnectionError:
292 logging.warn('Restoring kernel doesn\'t help, still '
293 'connection error.')
294
295 # DUT may be broken by a corrupted OS image. Restore OS image.
296 self._ensure_client_in_recovery()
297 logging.info('Try restore the OS image...')
298 self.faft_client.system.run_shell_command('chromeos-install --yes')
299 self.sync_and_warm_reboot()
300 self.wait_for_client_offline()
301 self.wait_dev_screen_and_ctrl_d()
302 try:
303 self.wait_for_client(install_deps=True)
304 logging.info('Successfully restore OS image.')
305 return
306 except ConnectionError:
307 logging.warn('Restoring OS image doesn\'t help, still connection '
308 'error.')
309
310 def _ensure_client_in_recovery(self):
311 """Ensure client in recovery boot; reboot into it if necessary.
312
313 @raise TestError: if failed to boot the USB image.
314 """
315 logging.info('Try boot into USB image...')
316 self.servo.switch_usbkey('host')
317 self.enable_rec_mode_and_reboot()
318 self.wait_fw_screen_and_plug_usb()
319 try:
320 self.wait_for_client(install_deps=True)
321 except ConnectionError:
322 raise error.TestError('Failed to boot the USB image.')
323
Yusuf Mohsinally64ee3a72014-06-26 10:24:27 -0700324 def _restore_routine_from_timeout(self):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700325 """A routine to try to restore the system from a timeout error.
326
327 This method is called when FAFT failed to connect DUT after reboot.
328
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700329 @raise TestFail: This exception is already raised, with a decription
330 why it failed.
331 """
332 # DUT is disconnected. Capture the UART output for debug.
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700333 self._record_uart_capture()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700334
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700335 # TODO(waihong@chromium.org): Implement replugging the Ethernet to
336 # identify if it is a network flaky.
337
338 recovery_reason = self._retrieve_recovery_reason_from_trap()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700339
340 # Reset client to a workable state.
341 self._reset_client()
342
343 # Raise the proper TestFail exception.
Yusuf Mohsinally64ee3a72014-06-26 10:24:27 -0700344 if recovery_reason:
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700345 raise error.TestFail('Trapped in the recovery screen (reason: %d) '
346 'and timed out' % recovery_reason)
347 else:
348 raise error.TestFail('Timed out waiting for DUT reboot')
349
350 def assert_test_image_in_usb_disk(self, usb_dev=None, install_shim=False):
351 """Assert an USB disk plugged-in on servo and a test image inside.
352
353 @param usb_dev: A string of USB stick path on the host, like '/dev/sdc'.
354 If None, it is detected automatically.
355 @param install_shim: True to verify an install shim instead of a test
356 image.
357 @raise TestError: if USB disk not detected or not a test (install shim)
358 image.
359 """
360 if self.check_setup_done('usb_check'):
361 return
362 if usb_dev:
363 assert self.servo.get_usbkey_direction() == 'host'
364 else:
365 self.servo.switch_usbkey('host')
366 usb_dev = self.servo.probe_host_usb_dev()
367 if not usb_dev:
368 raise error.TestError(
369 'An USB disk should be plugged in the servo board.')
370
371 rootfs = '%s%s' % (usb_dev, self._ROOTFS_PARTITION_NUMBER)
372 logging.info('usb dev is %s', usb_dev)
373 tmpd = self.servo.system_output('mktemp -d -t usbcheck.XXXX')
374 self.servo.system('mount -o ro %s %s' % (rootfs, tmpd))
375
376 if install_shim:
377 dir_list = self.servo.system_output('ls -a %s' %
378 os.path.join(tmpd, 'root'))
379 check_passed = '.factory_installer' in dir_list
380 else:
381 check_passed = self.servo.system_output(
382 'grep -i "CHROMEOS_RELEASE_DESCRIPTION=.*test" %s' %
383 os.path.join(tmpd, 'etc/lsb-release'),
384 ignore_status=True)
385 for cmd in ('umount %s' % rootfs, 'sync', 'rm -rf %s' % tmpd):
386 self.servo.system(cmd)
387
388 if not check_passed:
389 raise error.TestError(
390 'No Chrome OS %s found on the USB flash plugged into servo' %
Vic Yang8d348e02014-05-22 14:07:35 -0700391 ('install shim' if install_shim else 'test'))
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700392
393 self.mark_setup_done('usb_check')
394
395 def setup_usbkey(self, usbkey, host=None, install_shim=False):
396 """Setup the USB disk for the test.
397
398 It checks the setup of USB disk and a valid ChromeOS test image inside.
399 It also muxes the USB disk to either the host or DUT by request.
400
401 @param usbkey: True if the USB disk is required for the test, False if
402 not required.
403 @param host: Optional, True to mux the USB disk to host, False to mux it
404 to DUT, default to do nothing.
405 @param install_shim: True to verify an install shim instead of a test
406 image.
407 """
408 if usbkey:
409 self.assert_test_image_in_usb_disk(install_shim=install_shim)
410 elif host is None:
411 # USB disk is not required for the test. Better to mux it to host.
412 host = True
413
414 if host is True:
415 self.servo.switch_usbkey('host')
416 elif host is False:
417 self.servo.switch_usbkey('dut')
418
419 def get_usbdisk_path_on_dut(self):
420 """Get the path of the USB disk device plugged-in the servo on DUT.
421
422 Returns:
423 A string representing USB disk path, like '/dev/sdb', or None if
424 no USB disk is found.
425 """
426 cmd = 'ls -d /dev/s*[a-z]'
427 original_value = self.servo.get_usbkey_direction()
428
429 # Make the dut unable to see the USB disk.
430 self.servo.switch_usbkey('off')
431 no_usb_set = set(
432 self.faft_client.system.run_shell_command_get_output(cmd))
433
434 # Make the dut able to see the USB disk.
435 self.servo.switch_usbkey('dut')
436 time.sleep(self.faft_config.between_usb_plug)
437 has_usb_set = set(
438 self.faft_client.system.run_shell_command_get_output(cmd))
439
440 # Back to its original value.
441 if original_value != self.servo.get_usbkey_direction():
442 self.servo.switch_usbkey(original_value)
443
444 diff_set = has_usb_set - no_usb_set
445 if len(diff_set) == 1:
446 return diff_set.pop()
447 else:
448 return None
449
Duncan Laurie10eb6182014-10-07 15:39:05 -0700450 def _create_faft_lockfile(self):
451 """Creates the FAFT lockfile."""
452 logging.info('Creating FAFT lockfile...')
453 command = 'touch %s' % (self.lockfile)
454 self.faft_client.system.run_shell_command(command)
455
456 def _remove_faft_lockfile(self):
457 """Removes the FAFT lockfile."""
458 logging.info('Removing FAFT lockfile...')
459 command = 'rm -f %s' % (self.lockfile)
460 self.faft_client.system.run_shell_command(command)
461
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700462 def _stop_service(self, service):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700463 """Stops a upstart service on the client.
464
465 @param service: The name of the upstart service.
466 """
467 logging.info('Stopping %s...', service)
468 command = 'status %s | grep stop || stop %s' % (service, service)
469 self.faft_client.system.run_shell_command(command)
470
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700471 def _start_service(self, service):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700472 """Starts a upstart service on the client.
473
474 @param service: The name of the upstart service.
475 """
476 logging.info('Starting %s...', service)
477 command = 'status %s | grep start || start %s' % (service, service)
478 self.faft_client.system.run_shell_command(command)
479
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700480 def _write_gbb_flags(self, new_flags):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700481 """Write the GBB flags to the current firmware.
482
483 @param new_flags: The flags to write.
484 """
485 gbb_flags = self.faft_client.bios.get_gbb_flags()
486 if gbb_flags == new_flags:
487 return
488 logging.info('Changing GBB flags from 0x%x to 0x%x.',
489 gbb_flags, new_flags)
490 self.faft_client.system.run_shell_command(
491 '/usr/share/vboot/bin/set_gbb_flags.sh 0x%x' % new_flags)
492 self.faft_client.bios.reload()
493 # If changing FORCE_DEV_SWITCH_ON flag, reboot to get a clear state
494 if ((gbb_flags ^ new_flags) & vboot.GBB_FLAG_FORCE_DEV_SWITCH_ON):
Ryan Lin5bee6102014-09-16 13:17:02 -0700495 self.sync_and_warm_reboot()
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -0700496 self.wait_dev_screen_and_ctrl_d()
Vic Yang8d23f242014-05-30 10:25:50 -0700497 self.wait_for_kernel_up()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700498
499 def clear_set_gbb_flags(self, clear_mask, set_mask):
500 """Clear and set the GBB flags in the current flashrom.
501
502 @param clear_mask: A mask of flags to be cleared.
503 @param set_mask: A mask of flags to be set.
504 """
505 gbb_flags = self.faft_client.bios.get_gbb_flags()
506 new_flags = gbb_flags & ctypes.c_uint32(~clear_mask).value | set_mask
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700507 self._write_gbb_flags(new_flags)
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700508
509 def check_ec_capability(self, required_cap=None, suppress_warning=False):
510 """Check if current platform has required EC capabilities.
511
512 @param required_cap: A list containing required EC capabilities. Pass in
513 None to only check for presence of Chrome EC.
514 @param suppress_warning: True to suppress any warning messages.
515 @return: True if requirements are met. Otherwise, False.
516 """
517 if not self.faft_config.chrome_ec:
518 if not suppress_warning:
519 logging.warn('Requires Chrome EC to run this test.')
520 return False
521
522 if not required_cap:
523 return True
524
525 for cap in required_cap:
526 if cap not in self.faft_config.ec_capability:
527 if not suppress_warning:
528 logging.warn('Requires EC capability "%s" to run this '
529 'test.', cap)
530 return False
531
532 return True
533
534 def check_root_part_on_non_recovery(self, part):
535 """Check the partition number of root device and on normal/dev boot.
536
537 @param part: A string of partition number, e.g.'3'.
538 @return: True if the root device matched and on normal/dev boot;
539 otherwise, False.
540 """
541 return self.checkers.root_part_checker(part) and \
542 self.checkers.crossystem_checker({
543 'mainfw_type': ('normal', 'developer'),
544 })
545
546 def _join_part(self, dev, part):
547 """Return a concatenated string of device and partition number.
548
549 @param dev: A string of device, e.g.'/dev/sda'.
550 @param part: A string of partition number, e.g.'3'.
551 @return: A concatenated string of device and partition number,
552 e.g.'/dev/sda3'.
553
554 >>> seq = FirmwareTest()
555 >>> seq._join_part('/dev/sda', '3')
556 '/dev/sda3'
557 >>> seq._join_part('/dev/mmcblk0', '2')
558 '/dev/mmcblk0p2'
559 """
560 if 'mmcblk' in dev:
561 return dev + 'p' + part
562 else:
563 return dev + part
564
565 def copy_kernel_and_rootfs(self, from_part, to_part):
566 """Copy kernel and rootfs from from_part to to_part.
567
568 @param from_part: A string of partition number to be copied from.
569 @param to_part: A string of partition number to be copied to.
570 """
571 root_dev = self.faft_client.system.get_root_dev()
572 logging.info('Copying kernel from %s to %s. Please wait...',
573 from_part, to_part)
574 self.faft_client.system.run_shell_command('dd if=%s of=%s bs=4M' %
575 (self._join_part(root_dev, self.KERNEL_MAP[from_part]),
576 self._join_part(root_dev, self.KERNEL_MAP[to_part])))
577 logging.info('Copying rootfs from %s to %s. Please wait...',
578 from_part, to_part)
579 self.faft_client.system.run_shell_command('dd if=%s of=%s bs=4M' %
580 (self._join_part(root_dev, self.ROOTFS_MAP[from_part]),
581 self._join_part(root_dev, self.ROOTFS_MAP[to_part])))
582
583 def ensure_kernel_boot(self, part):
584 """Ensure the request kernel boot.
585
586 If not, it duplicates the current kernel to the requested kernel
587 and sets the requested higher priority to ensure it boot.
588
589 @param part: A string of kernel partition number or 'a'/'b'.
590 """
591 if not self.checkers.root_part_checker(part):
592 if self.faft_client.kernel.diff_a_b():
593 self.copy_kernel_and_rootfs(
594 from_part=self.OTHER_KERNEL_MAP[part],
595 to_part=part)
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -0700596 self.reset_and_prioritize_kernel(part)
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700597
598 def set_hardware_write_protect(self, enable):
599 """Set hardware write protect pin.
600
601 @param enable: True if asserting write protect pin. Otherwise, False.
602 """
603 self.servo.set('fw_wp_vref', self.faft_config.wp_voltage)
604 self.servo.set('fw_wp_en', 'on')
605 self.servo.set('fw_wp', 'on' if enable else 'off')
606
607 def set_ec_write_protect_and_reboot(self, enable):
608 """Set EC write protect status and reboot to take effect.
609
610 The write protect state is only activated if both hardware write
611 protect pin is asserted and software write protect flag is set.
612 This method asserts/deasserts hardware write protect pin first, and
613 set corresponding EC software write protect flag.
614
615 If the device uses non-Chrome EC, set the software write protect via
616 flashrom.
617
618 If the device uses Chrome EC, a reboot is required for write protect
619 to take effect. Since the software write protect flag cannot be unset
620 if hardware write protect pin is asserted, we need to deasserted the
621 pin first if we are deactivating write protect. Similarly, a reboot
622 is required before we can modify the software flag.
623
624 @param enable: True if activating EC write protect. Otherwise, False.
625 """
626 self.set_hardware_write_protect(enable)
627 if self.faft_config.chrome_ec:
628 self.set_chrome_ec_write_protect_and_reboot(enable)
629 else:
630 self.faft_client.ec.set_write_protect(enable)
631 self.sync_and_warm_reboot()
632
633 def set_chrome_ec_write_protect_and_reboot(self, enable):
634 """Set Chrome EC write protect status and reboot to take effect.
635
636 @param enable: True if activating EC write protect. Otherwise, False.
637 """
638 if enable:
639 # Set write protect flag and reboot to take effect.
640 self.ec.set_flash_write_protect(enable)
641 self.sync_and_ec_reboot()
642 else:
643 # Reboot after deasserting hardware write protect pin to deactivate
644 # write protect. And then remove software write protect flag.
645 self.sync_and_ec_reboot()
646 self.ec.set_flash_write_protect(enable)
647
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700648 def _setup_ec_write_protect(self, ec_wp):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700649 """Setup for EC write-protection.
650
651 It makes sure the EC in the requested write-protection state. If not, it
652 flips the state. Flipping the write-protection requires DUT reboot.
653
654 @param ec_wp: True to request EC write-protected; False to request EC
655 not write-protected; None to do nothing.
656 """
657 if ec_wp is None:
658 self._old_ec_wp = None
659 return
660 self._old_ec_wp = self.checkers.crossystem_checker({'wpsw_boot': '1'})
661 if ec_wp != self._old_ec_wp:
662 logging.info('The test required EC is %swrite-protected. Reboot '
663 'and flip the state.', '' if ec_wp else 'not ')
Yusuf Mohsinallycae79022014-05-14 14:44:39 -0700664 self.do_reboot_action((self.set_ec_write_protect_and_reboot, ec_wp))
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -0700665 self.wait_dev_screen_and_ctrl_d()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700666
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700667 def _restore_ec_write_protect(self):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700668 """Restore the original EC write-protection."""
669 if (not hasattr(self, '_old_ec_wp')) or (self._old_ec_wp is None):
670 return
671 if not self.checkers.crossystem_checker(
672 {'wpsw_boot': '1' if self._old_ec_wp else '0'}):
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -0700673 logging.info('Restore original EC write protection and reboot.')
Yusuf Mohsinallycae79022014-05-14 14:44:39 -0700674 self.do_reboot_action((self.set_ec_write_protect_and_reboot,
675 self._old_ec_wp))
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -0700676 self.wait_dev_screen_and_ctrl_d()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700677
678 def press_ctrl_d(self, press_secs=''):
679 """Send Ctrl-D key to DUT.
680
681 @param press_secs : Str. Time to press key.
682 """
683 self.servo.ctrl_d(press_secs)
684
685 def press_ctrl_u(self):
686 """Send Ctrl-U key to DUT.
687
688 @raise TestError: if a non-Chrome EC device or no Ctrl-U command given
689 on a no-build-in-keyboard device.
690 """
691 if not self.faft_config.has_keyboard:
692 self.servo.ctrl_u()
693 elif self.check_ec_capability(['keyboard'], suppress_warning=True):
694 self.ec.key_down('<ctrl_l>')
695 self.ec.key_down('u')
696 self.ec.key_up('u')
697 self.ec.key_up('<ctrl_l>')
698 elif self.faft_config.has_keyboard:
699 raise error.TestError(
700 "Can't send Ctrl-U to DUT without using Chrome EC.")
701 else:
702 raise error.TestError(
703 "Should specify the ctrl_u_cmd argument.")
704
705 def press_enter(self, press_secs=''):
706 """Send Enter key to DUT.
707
708 @param press_secs: Seconds of holding the key.
709 """
710 self.servo.enter_key(press_secs)
711
712 def wait_dev_screen_and_ctrl_d(self):
713 """Wait for firmware warning screen and press Ctrl-D."""
714 time.sleep(self.faft_config.dev_screen)
715 self.press_ctrl_d()
716
717 def wait_fw_screen_and_ctrl_d(self):
718 """Wait for firmware warning screen and press Ctrl-D."""
719 time.sleep(self.faft_config.firmware_screen)
720 self.press_ctrl_d()
721
722 def wait_fw_screen_and_ctrl_u(self):
723 """Wait for firmware warning screen and press Ctrl-U."""
724 time.sleep(self.faft_config.firmware_screen)
725 self.press_ctrl_u()
726
727 def wait_fw_screen_and_trigger_recovery(self, need_dev_transition=False):
728 """Wait for firmware warning screen and trigger recovery boot.
729
730 @param need_dev_transition: True when needs dev mode transition, only
731 for Alex/ZGB.
732 """
733 time.sleep(self.faft_config.firmware_screen)
734
735 # Pressing Enter for too long triggers a second key press.
736 # Let's press it without delay
737 self.press_enter(press_secs=0)
738
739 # For Alex/ZGB, there is a dev warning screen in text mode.
740 # Skip it by pressing Ctrl-D.
741 if need_dev_transition:
742 time.sleep(self.faft_config.legacy_text_screen)
743 self.press_ctrl_d()
744
745 def wait_fw_screen_and_unplug_usb(self):
746 """Wait for firmware warning screen and then unplug the servo USB."""
747 time.sleep(self.faft_config.load_usb)
748 self.servo.switch_usbkey('host')
749 time.sleep(self.faft_config.between_usb_plug)
750
751 def wait_fw_screen_and_plug_usb(self):
752 """Wait for firmware warning screen and then unplug and plug the USB."""
753 self.wait_fw_screen_and_unplug_usb()
754 self.servo.switch_usbkey('dut')
755
756 def wait_fw_screen_and_press_power(self):
757 """Wait for firmware warning screen and press power button."""
758 time.sleep(self.faft_config.firmware_screen)
759 # While the firmware screen, the power button probing loop sleeps
760 # 0.25 second on every scan. Use the normal delay (1.2 second) for
761 # power press.
762 self.servo.power_normal_press()
763
764 def wait_longer_fw_screen_and_press_power(self):
765 """Wait for firmware screen without timeout and press power button."""
766 time.sleep(self.faft_config.dev_screen_timeout)
767 self.wait_fw_screen_and_press_power()
768
769 def wait_fw_screen_and_close_lid(self):
770 """Wait for firmware warning screen and close lid."""
771 time.sleep(self.faft_config.firmware_screen)
772 self.servo.lid_close()
773
774 def wait_longer_fw_screen_and_close_lid(self):
775 """Wait for firmware screen without timeout and close lid."""
776 time.sleep(self.faft_config.firmware_screen)
777 self.wait_fw_screen_and_close_lid()
778
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700779 def _setup_uart_capture(self):
Duncan Laurieaf61c1f2014-10-07 15:35:18 -0700780 """Setup the CPU/EC/PD UART capture."""
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700781 self.cpu_uart_file = os.path.join(self.resultsdir, 'cpu_uart.txt')
782 self.servo.set('cpu_uart_capture', 'on')
783 self.ec_uart_file = None
Duncan Laurieaf61c1f2014-10-07 15:35:18 -0700784 self.usbpd_uart_file = None
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700785 if self.faft_config.chrome_ec:
786 try:
787 self.servo.set('ec_uart_capture', 'on')
788 self.ec_uart_file = os.path.join(self.resultsdir, 'ec_uart.txt')
789 except error.TestFail as e:
790 if 'No control named' in str(e):
791 logging.warn('The servod is too old that ec_uart_capture '
792 'not supported.')
Duncan Laurieaf61c1f2014-10-07 15:35:18 -0700793 # Log separate PD console if supported
794 if self.check_ec_capability(['usbpd_uart'], suppress_warning=True):
795 try:
796 self.servo.set('usbpd_uart_capture', 'on')
797 self.usbpd_uart_file = os.path.join(self.resultsdir,
798 'usbpd_uart.txt')
799 except error.TestFail as e:
800 if 'No control named' in str(e):
801 logging.warn('The servod is too old that '
802 'usbpd_uart_capture is not supported.')
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700803 else:
804 logging.info('Not a Google EC, cannot capture ec console output.')
805
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700806 def _record_uart_capture(self):
Duncan Laurieaf61c1f2014-10-07 15:35:18 -0700807 """Record the CPU/EC/PD UART output stream to files."""
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700808 if self.cpu_uart_file:
809 with open(self.cpu_uart_file, 'a') as f:
810 f.write(ast.literal_eval(self.servo.get('cpu_uart_stream')))
811 if self.ec_uart_file and self.faft_config.chrome_ec:
812 with open(self.ec_uart_file, 'a') as f:
813 f.write(ast.literal_eval(self.servo.get('ec_uart_stream')))
Duncan Laurieaf61c1f2014-10-07 15:35:18 -0700814 if (self.usbpd_uart_file and self.faft_config.chrome_ec and
815 self.check_ec_capability(['usbpd_uart'], suppress_warning=True)):
816 with open(self.usbpd_uart_file, 'a') as f:
817 f.write(ast.literal_eval(self.servo.get('usbpd_uart_stream')))
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700818
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700819 def _cleanup_uart_capture(self):
Duncan Laurieaf61c1f2014-10-07 15:35:18 -0700820 """Cleanup the CPU/EC/PD UART capture."""
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700821 # Flush the remaining UART output.
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700822 self._record_uart_capture()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700823 self.servo.set('cpu_uart_capture', 'off')
824 if self.ec_uart_file and self.faft_config.chrome_ec:
825 self.servo.set('ec_uart_capture', 'off')
Duncan Laurieaf61c1f2014-10-07 15:35:18 -0700826 if (self.usbpd_uart_file and self.faft_config.chrome_ec and
827 self.check_ec_capability(['usbpd_uart'], suppress_warning=True)):
828 self.servo.set('usbpd_uart_capture', 'off')
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700829
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700830 def _fetch_servo_log(self):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700831 """Fetch the servo log."""
832 cmd = '[ -e %s ] && cat %s || echo NOTFOUND' % ((self._SERVOD_LOG,) * 2)
833 servo_log = self.servo.system_output(cmd)
834 return None if servo_log == 'NOTFOUND' else servo_log
835
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700836 def _setup_servo_log(self):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700837 """Setup the servo log capturing."""
838 self.servo_log_original_len = -1
839 if self.servo.is_localhost():
840 # No servo log recorded when servod runs locally.
841 return
842
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700843 servo_log = self._fetch_servo_log()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700844 if servo_log:
845 self.servo_log_original_len = len(servo_log)
846 else:
847 logging.warn('Servo log file not found.')
848
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700849 def _record_servo_log(self):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700850 """Record the servo log to the results directory."""
851 if self.servo_log_original_len != -1:
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700852 servo_log = self._fetch_servo_log()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700853 servo_log_file = os.path.join(self.resultsdir, 'servod.log')
854 with open(servo_log_file, 'a') as f:
855 f.write(servo_log[self.servo_log_original_len:])
856
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700857 def _record_faft_client_log(self):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700858 """Record the faft client log to the results directory."""
859 client_log = self.faft_client.system.dump_log(True)
860 client_log_file = os.path.join(self.resultsdir, 'faft_client.log')
861 with open(client_log_file, 'w') as f:
862 f.write(client_log)
863
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700864 def _setup_gbb_flags(self):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700865 """Setup the GBB flags for FAFT test."""
866 if self.faft_config.gbb_version < 1.1:
867 logging.info('Skip modifying GBB on versions older than 1.1.')
868 return
869
870 if self.check_setup_done('gbb_flags'):
871 return
872
873 self._backup_gbb_flags = self.faft_client.bios.get_gbb_flags()
874
875 logging.info('Set proper GBB flags for test.')
876 self.clear_set_gbb_flags(vboot.GBB_FLAG_DEV_SCREEN_SHORT_DELAY |
877 vboot.GBB_FLAG_FORCE_DEV_SWITCH_ON |
878 vboot.GBB_FLAG_FORCE_DEV_BOOT_USB |
879 vboot.GBB_FLAG_DISABLE_FW_ROLLBACK_CHECK,
880 vboot.GBB_FLAG_ENTER_TRIGGERS_TONORM |
881 vboot.GBB_FLAG_FAFT_KEY_OVERIDE)
882 self.mark_setup_done('gbb_flags')
883
884 def drop_backup_gbb_flags(self):
885 """Drops the backup GBB flags.
886
887 This can be used when a test intends to permanently change GBB flags.
888 """
889 self._backup_gbb_flags = None
890
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700891 def _restore_gbb_flags(self):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700892 """Restore GBB flags to their original state."""
893 if not self._backup_gbb_flags:
894 return
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -0700895 self._write_gbb_flags(self._backup_gbb_flags)
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700896 self.unmark_setup_done('gbb_flags')
897
898 def setup_tried_fwb(self, tried_fwb):
899 """Setup for fw B tried state.
900
901 It makes sure the system in the requested fw B tried state. If not, it
902 tries to do so.
903
904 @param tried_fwb: True if requested in tried_fwb=1;
905 False if tried_fwb=0.
906 """
907 if tried_fwb:
908 if not self.checkers.crossystem_checker({'tried_fwb': '1'}):
909 logging.info(
910 'Firmware is not booted with tried_fwb. Reboot into it.')
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -0700911 self.faft_client.system.set_try_fw_b()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700912 else:
913 if not self.checkers.crossystem_checker({'tried_fwb': '0'}):
914 logging.info(
915 'Firmware is booted with tried_fwb. Reboot to clear.')
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700916
917 def power_on(self):
918 """Switch DUT AC power on."""
919 self._client.power_on(self.power_control)
920
921 def power_off(self):
922 """Switch DUT AC power off."""
923 self._client.power_off(self.power_control)
924
925 def power_cycle(self):
926 """Power cycle DUT AC power."""
927 self._client.power_cycle(self.power_control)
928
929 def enable_rec_mode_and_reboot(self):
930 """Switch to rec mode and reboot.
931
932 This method emulates the behavior of the old physical recovery switch,
933 i.e. switch ON + reboot + switch OFF, and the new keyboard controlled
934 recovery mode, i.e. just press Power + Esc + Refresh.
935 """
Ryan Lin5bee6102014-09-16 13:17:02 -0700936 self.blocking_sync()
J. Richard Barnettea57ff842014-06-05 10:00:31 -0700937 psc = self.servo.get_power_state_controller()
938 psc.power_off()
939 psc.power_on(psc.REC_ON)
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700940
941 def enable_dev_mode_and_reboot(self):
942 """Switch to developer mode and reboot."""
943 if self.faft_config.keyboard_dev:
944 self.enable_keyboard_dev_mode()
945 else:
946 self.servo.enable_development_mode()
947 self.faft_client.system.run_shell_command(
948 'chromeos-firmwareupdate --mode todev && reboot')
949
950 def enable_normal_mode_and_reboot(self):
951 """Switch to normal mode and reboot."""
952 if self.faft_config.keyboard_dev:
953 self.disable_keyboard_dev_mode()
954 else:
955 self.servo.disable_development_mode()
956 self.faft_client.system.run_shell_command(
957 'chromeos-firmwareupdate --mode tonormal && reboot')
958
959 def wait_fw_screen_and_switch_keyboard_dev_mode(self, dev):
960 """Wait for firmware screen and then switch into or out of dev mode.
961
962 @param dev: True if switching into dev mode. Otherwise, False.
963 """
964 time.sleep(self.faft_config.firmware_screen)
965 if dev:
966 self.press_ctrl_d()
967 time.sleep(self.faft_config.confirm_screen)
968 if self.faft_config.rec_button_dev_switch:
969 logging.info('RECOVERY button pressed to switch to dev mode')
970 self.servo.set('rec_mode', 'on')
971 time.sleep(self.faft_config.hold_cold_reset)
972 self.servo.set('rec_mode', 'off')
973 else:
974 logging.info('ENTER pressed to switch to dev mode')
975 self.press_enter()
976 else:
977 self.press_enter()
978 time.sleep(self.faft_config.confirm_screen)
979 self.press_enter()
980
981 def enable_keyboard_dev_mode(self):
982 """Enable keyboard controlled developer mode"""
983 logging.info("Enabling keyboard controlled developer mode")
984 # Plug out USB disk for preventing recovery boot without warning
985 self.servo.switch_usbkey('host')
986 # Rebooting EC with rec mode on. Should power on AP.
987 self.enable_rec_mode_and_reboot()
988 self.wait_for_client_offline()
989 self.wait_fw_screen_and_switch_keyboard_dev_mode(dev=True)
990
991 # TODO (crosbug.com/p/16231) remove this conditional completely if/when
992 # issue is resolved.
993 if self.faft_config.platform == 'Parrot':
994 self.wait_for_client_offline()
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -0700995 self.reboot_cold_trigger()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -0700996
997 def disable_keyboard_dev_mode(self):
998 """Disable keyboard controlled developer mode"""
999 logging.info("Disabling keyboard controlled developer mode")
1000 if (not self.faft_config.chrome_ec and
1001 not self.faft_config.broken_rec_mode):
1002 self.servo.disable_recovery_mode()
Ryan Lin5bee6102014-09-16 13:17:02 -07001003 self.sync_and_cold_reboot()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001004 self.wait_for_client_offline()
1005 self.wait_fw_screen_and_switch_keyboard_dev_mode(dev=False)
1006
1007 def setup_dev_mode(self, dev_mode):
1008 """Setup for development mode.
1009
1010 It makes sure the system in the requested normal/dev mode. If not, it
1011 tries to do so.
1012
1013 @param dev_mode: True if requested in dev mode; False if normal mode.
1014 """
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001015 if dev_mode:
1016 if (not self.faft_config.keyboard_dev and
1017 not self.checkers.crossystem_checker({'devsw_cur': '1'})):
1018 logging.info('Dev switch is not on. Now switch it on.')
1019 self.servo.enable_development_mode()
1020 if not self.checkers.crossystem_checker({'devsw_boot': '1',
1021 'mainfw_type': 'developer'}):
1022 logging.info('System is not in dev mode. Reboot into it.')
1023 if self._backup_dev_mode is None:
1024 self._backup_dev_mode = False
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001025 if self.faft_config.keyboard_dev:
1026 self.faft_client.system.run_shell_command(
1027 'chromeos-firmwareupdate --mode todev && reboot')
1028 self.do_reboot_action(self.enable_keyboard_dev_mode)
Vic Yang9887e6f2014-06-03 11:11:30 -07001029 self.wait_dev_screen_and_ctrl_d()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001030 else:
1031 if (not self.faft_config.keyboard_dev and
1032 not self.checkers.crossystem_checker({'devsw_cur': '0'})):
1033 logging.info('Dev switch is not off. Now switch it off.')
1034 self.servo.disable_development_mode()
1035 if not self.checkers.crossystem_checker({'devsw_boot': '0',
1036 'mainfw_type': 'normal'}):
1037 logging.info('System is not in normal mode. Reboot into it.')
1038 if self._backup_dev_mode is None:
1039 self._backup_dev_mode = True
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001040 if self.faft_config.keyboard_dev:
1041 self.faft_client.system.run_shell_command(
1042 'chromeos-firmwareupdate --mode tonormal && reboot')
1043 self.do_reboot_action(self.disable_keyboard_dev_mode)
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001044
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -07001045 def _restore_dev_mode(self):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001046 """Restores original dev mode status if it has changed."""
1047 if self._backup_dev_mode is not None:
1048 self.setup_dev_mode(self._backup_dev_mode)
1049 self._backup_dev_mode = None
1050
1051 def setup_rw_boot(self, section='a'):
1052 """Make sure firmware is in RW-boot mode.
1053
1054 If the given firmware section is in RO-boot mode, turn off the RO-boot
1055 flag and reboot DUT into RW-boot mode.
1056
1057 @param section: A firmware section, either 'a' or 'b'.
1058 """
1059 flags = self.faft_client.bios.get_preamble_flags(section)
1060 if flags & vboot.PREAMBLE_USE_RO_NORMAL:
1061 flags = flags ^ vboot.PREAMBLE_USE_RO_NORMAL
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001062 self.faft_client.bios.set_preamble_flags(section, flags)
1063 self.reboot_warm()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001064
1065 def setup_kernel(self, part):
1066 """Setup for kernel test.
1067
1068 It makes sure both kernel A and B bootable and the current boot is
1069 the requested kernel part.
1070
1071 @param part: A string of kernel partition number or 'a'/'b'.
1072 """
1073 self.ensure_kernel_boot(part)
1074 logging.info('Checking the integrity of kernel B and rootfs B...')
1075 if (self.faft_client.kernel.diff_a_b() or
1076 not self.faft_client.rootfs.verify_rootfs('B')):
1077 logging.info('Copying kernel and rootfs from A to B...')
1078 self.copy_kernel_and_rootfs(from_part=part,
1079 to_part=self.OTHER_KERNEL_MAP[part])
1080 self.reset_and_prioritize_kernel(part)
1081
1082 def reset_and_prioritize_kernel(self, part):
1083 """Make the requested partition highest priority.
1084
1085 This function also reset kerenl A and B to bootable.
1086
1087 @param part: A string of partition number to be prioritized.
1088 """
1089 root_dev = self.faft_client.system.get_root_dev()
1090 # Reset kernel A and B to bootable.
1091 self.faft_client.system.run_shell_command(
1092 'cgpt add -i%s -P1 -S1 -T0 %s' % (self.KERNEL_MAP['a'], root_dev))
1093 self.faft_client.system.run_shell_command(
1094 'cgpt add -i%s -P1 -S1 -T0 %s' % (self.KERNEL_MAP['b'], root_dev))
1095 # Set kernel part highest priority.
1096 self.faft_client.system.run_shell_command('cgpt prioritize -i%s %s' %
1097 (self.KERNEL_MAP[part], root_dev))
1098
Yusuf Mohsinally1bacc962014-08-14 11:37:32 -07001099 def blocking_sync(self):
1100 """Run a blocking sync command."""
1101 # The double calls to sync fakes a blocking call
1102 # since the first call returns before the flush
1103 # is complete, but the second will wait for the
1104 # first to finish.
1105 self.faft_client.system.run_shell_command('sync')
1106 self.faft_client.system.run_shell_command('sync')
1107
Ryan Lin5bee6102014-09-16 13:17:02 -07001108 # sync only sends SYNCHRONIZE_CACHE but doesn't
1109 # check the status. hdparm sends TUR to check if
1110 # a device is ready for transfer operation.
1111 root_dev = self.faft_client.system.get_root_dev()
1112 self.faft_client.system.run_shell_command('hdparm -f %s' % root_dev)
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001113
1114 ################################################
1115 # Reboot APIs
1116
Vic Yang9887e6f2014-06-03 11:11:30 -07001117 def reboot_warm(self, sync_before_boot=True,
1118 wait_for_dut_up=True, ctrl_d=False):
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001119 """
1120 Perform a warm reboot.
1121
1122 This is the highest level function that most users will need.
1123 It performs a sync, triggers a reboot and waits for kernel to boot.
1124
1125 @param sync_before_boot: bool, sync to disk before booting.
1126 @param wait_for_dut_up: bool, wait for dut to boot before returning.
Vic Yang9887e6f2014-06-03 11:11:30 -07001127 @param ctrl_d: bool, press ctrl-D at dev screen.
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001128 """
1129 if sync_before_boot:
Yusuf Mohsinally1bacc962014-08-14 11:37:32 -07001130 self.blocking_sync()
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001131 self.reboot_warm_trigger()
Vic Yang9887e6f2014-06-03 11:11:30 -07001132 if ctrl_d:
1133 self.wait_dev_screen_and_ctrl_d()
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001134 if wait_for_dut_up:
1135 self.wait_for_client_offline()
1136 self.wait_for_kernel_up()
1137
Vic Yang9887e6f2014-06-03 11:11:30 -07001138 def reboot_cold(self, sync_before_boot=True,
1139 wait_for_dut_up=True, ctrl_d=False):
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001140 """
1141 Perform a cold reboot.
1142
1143 This is the highest level function that most users will need.
1144 It performs a sync, triggers a reboot and waits for kernel to boot.
1145
1146 @param sync_before_boot: bool, sync to disk before booting.
1147 @param wait_for_dut_up: bool, wait for dut to boot before returning.
Vic Yang9887e6f2014-06-03 11:11:30 -07001148 @param ctrl_d: bool, press ctrl-D at dev screen.
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001149 """
1150 if sync_before_boot:
Yusuf Mohsinally1bacc962014-08-14 11:37:32 -07001151 self.blocking_sync()
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001152 self.reboot_cold_trigger()
Vic Yang9887e6f2014-06-03 11:11:30 -07001153 if ctrl_d:
1154 self.wait_dev_screen_and_ctrl_d()
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001155 if wait_for_dut_up:
1156 self.wait_for_client_offline()
1157 self.wait_for_kernel_up()
1158
1159 def do_reboot_action(self, func):
1160 """
1161 Helper function that wraps the reboot function so that we check if the
1162 DUT went down.
1163
1164 @param func: function to trigger the reboot.
1165 """
1166 logging.info("-[FAFT]-[ start do_reboot_action ]----------")
1167 boot_id = self.get_bootid()
1168 self._call_action(func)
1169 self.wait_for_client_offline(orig_boot_id=boot_id)
1170 logging.info("-[FAFT]-[ end do_reboot_action ]------------")
1171
1172 def wait_for_kernel_up(self, install_deps=False):
1173 """
1174 Helper function that waits for the device to boot up to kernel.
1175
1176 @param install_deps: bool, install deps after boot.
1177 """
1178 logging.info("-[FAFT]-[ start wait_for_kernel_up ]---")
1179 try:
Danny Chan1437ad52014-06-30 13:57:12 -07001180 logging.info("Installing deps after boot : %s", install_deps)
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001181 self.wait_for_client(install_deps=install_deps)
1182 # Stop update-engine as it may change firmware/kernel.
Yusuf Mohsinally8b377eb2014-05-12 18:50:03 -07001183 self._stop_service('update-engine')
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001184 except ConnectionError:
1185 logging.error('wait_for_client() timed out.')
Yusuf Mohsinally64ee3a72014-06-26 10:24:27 -07001186 self._restore_routine_from_timeout()
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001187 logging.info("-[FAFT]-[ end wait_for_kernel_up ]-----")
1188
1189 def reboot_warm_trigger(self):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001190 """Request a warm reboot.
1191
1192 A wrapper for underlying servo warm reset.
1193 """
1194 # Use cold reset if the warm reset is broken.
1195 if self.faft_config.broken_warm_reset:
1196 logging.info('broken_warm_reset is True. Cold rebooting instead.')
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001197 self.reboot_cold_trigger()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001198 else:
1199 self.servo.get_power_state_controller().warm_reset()
1200
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001201 def reboot_cold_trigger(self):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001202 """Request a cold reboot.
1203
1204 A wrapper for underlying servo cold reset.
1205 """
J. Richard Barnette4b6af0d2014-06-05 09:57:20 -07001206 self.servo.get_power_state_controller().reset()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001207
1208 def sync_and_warm_reboot(self):
1209 """Request the client sync and do a warm reboot.
1210
1211 This is the default reboot action on FAFT.
1212 """
Yusuf Mohsinally1bacc962014-08-14 11:37:32 -07001213 self.blocking_sync()
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001214 self.reboot_warm_trigger()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001215
1216 def sync_and_cold_reboot(self):
1217 """Request the client sync and do a cold reboot.
1218
1219 This reboot action is used to reset EC for recovery mode.
1220 """
Yusuf Mohsinally1bacc962014-08-14 11:37:32 -07001221 self.blocking_sync()
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001222 self.reboot_cold_trigger()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001223
1224 def sync_and_ec_reboot(self, flags=''):
1225 """Request the client sync and do a EC triggered reboot.
1226
1227 @param flags: Optional, a space-separated string of flags passed to EC
1228 reboot command, including:
1229 default: EC soft reboot;
1230 'hard': EC cold/hard reboot.
1231 """
Yusuf Mohsinally1bacc962014-08-14 11:37:32 -07001232 self.blocking_sync()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001233 self.ec.reboot(flags)
1234 time.sleep(self.faft_config.ec_boot_to_console)
1235 self.check_lid_and_power_on()
1236
1237 def reboot_with_factory_install_shim(self):
1238 """Request reboot with factory install shim to reset TPM.
1239
1240 Factory install shim requires dev mode enabled. So this method switches
1241 firmware to dev mode first and reboot. The client uses factory install
1242 shim to reset TPM values.
1243 """
1244 # Unplug USB first to avoid the complicated USB autoboot cases.
1245 self.servo.switch_usbkey('host')
1246 is_dev = self.checkers.crossystem_checker({'devsw_boot': '1'})
1247 if not is_dev:
1248 self.enable_dev_mode_and_reboot()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001249 self.enable_rec_mode_and_reboot()
1250 self.wait_fw_screen_and_plug_usb()
1251 time.sleep(self.faft_config.install_shim_done)
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001252 self.reboot_warm_trigger()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001253
1254 def full_power_off_and_on(self):
1255 """Shutdown the device by pressing power button and power on again."""
1256 # Press power button to trigger Chrome OS normal shutdown process.
1257 # We use a customized delay since the normal-press 1.2s is not enough.
1258 self.servo.power_key(self.faft_config.hold_pwr_button)
Yusuf Mohsinallye04dd432014-08-27 14:18:45 -07001259 self.wait_for_client_offline()
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001260 time.sleep(self.faft_config.shutdown)
1261 # Short press power button to boot DUT again.
1262 self.servo.power_short_press()
1263
1264 def check_lid_and_power_on(self):
1265 """
1266 On devices with EC software sync, system powers on after EC reboots if
1267 lid is open. Otherwise, the EC shuts down CPU after about 3 seconds.
1268 This method checks lid switch state and presses power button if
1269 necessary.
1270 """
1271 if self.servo.get("lid_open") == "no":
1272 time.sleep(self.faft_config.software_sync)
1273 self.servo.power_short_press()
1274
1275 def _modify_usb_kernel(self, usb_dev, from_magic, to_magic):
1276 """Modify the kernel header magic in USB stick.
1277
1278 The kernel header magic is the first 8-byte of kernel partition.
1279 We modify it to make it fail on kernel verification check.
1280
1281 @param usb_dev: A string of USB stick path on the host, like '/dev/sdc'.
1282 @param from_magic: A string of magic which we change it from.
1283 @param to_magic: A string of magic which we change it to.
1284 @raise TestError: if failed to change magic.
1285 """
1286 assert len(from_magic) == 8
1287 assert len(to_magic) == 8
1288 # USB image only contains one kernel.
1289 kernel_part = self._join_part(usb_dev, self.KERNEL_MAP['a'])
1290 read_cmd = "sudo dd if=%s bs=8 count=1 2>/dev/null" % kernel_part
1291 current_magic = self.servo.system_output(read_cmd)
1292 if current_magic == to_magic:
1293 logging.info("The kernel magic is already %s.", current_magic)
1294 return
1295 if current_magic != from_magic:
1296 raise error.TestError("Invalid kernel image on USB: wrong magic.")
1297
1298 logging.info('Modify the kernel magic in USB, from %s to %s.',
1299 from_magic, to_magic)
1300 write_cmd = ("echo -n '%s' | sudo dd of=%s oflag=sync conv=notrunc "
1301 " 2>/dev/null" % (to_magic, kernel_part))
1302 self.servo.system(write_cmd)
1303
1304 if self.servo.system_output(read_cmd) != to_magic:
1305 raise error.TestError("Failed to write new magic.")
1306
1307 def corrupt_usb_kernel(self, usb_dev):
1308 """Corrupt USB kernel by modifying its magic from CHROMEOS to CORRUPTD.
1309
1310 @param usb_dev: A string of USB stick path on the host, like '/dev/sdc'.
1311 """
1312 self._modify_usb_kernel(usb_dev, self.CHROMEOS_MAGIC,
1313 self.CORRUPTED_MAGIC)
1314
1315 def restore_usb_kernel(self, usb_dev):
1316 """Restore USB kernel by modifying its magic from CORRUPTD to CHROMEOS.
1317
1318 @param usb_dev: A string of USB stick path on the host, like '/dev/sdc'.
1319 """
1320 self._modify_usb_kernel(usb_dev, self.CORRUPTED_MAGIC,
1321 self.CHROMEOS_MAGIC)
1322
1323 def _call_action(self, action_tuple, check_status=False):
1324 """Call the action function with/without arguments.
1325
1326 @param action_tuple: A function, or a tuple (function, args, error_msg),
1327 in which, args and error_msg are optional. args is
1328 either a value or a tuple if multiple arguments.
1329 This can also be a list containing multiple
1330 function or tuple. In this case, these actions are
1331 called in sequence.
1332 @param check_status: Check the return value of action function. If not
1333 succeed, raises a TestFail exception.
1334 @return: The result value of the action function.
1335 @raise TestError: An error when the action function is not callable.
1336 @raise TestFail: When check_status=True, action function not succeed.
1337 """
1338 if isinstance(action_tuple, list):
1339 return all([self._call_action(action, check_status=check_status)
1340 for action in action_tuple])
1341
1342 action = action_tuple
1343 args = ()
1344 error_msg = 'Not succeed'
1345 if isinstance(action_tuple, tuple):
1346 action = action_tuple[0]
1347 if len(action_tuple) >= 2:
1348 args = action_tuple[1]
1349 if not isinstance(args, tuple):
1350 args = (args,)
1351 if len(action_tuple) >= 3:
1352 error_msg = action_tuple[2]
1353
1354 if action is None:
1355 return
1356
1357 if not callable(action):
1358 raise error.TestError('action is not callable!')
1359
1360 info_msg = 'calling %s' % str(action)
1361 if args:
1362 info_msg += ' with args %s' % str(args)
1363 logging.info(info_msg)
1364 ret = action(*args)
1365
1366 if check_status and not ret:
1367 raise error.TestFail('%s: %s returning %s' %
1368 (error_msg, info_msg, str(ret)))
1369 return ret
1370
1371 def run_shutdown_process(self, shutdown_action, pre_power_action=None,
1372 post_power_action=None, shutdown_timeout=None):
1373 """Run shutdown_action(), which makes DUT shutdown, and power it on.
1374
1375 @param shutdown_action: function which makes DUT shutdown, like
1376 pressing power key.
1377 @param pre_power_action: function which is called before next power on.
1378 @param post_power_action: function which is called after next power on.
1379 @param shutdown_timeout: a timeout to confirm DUT shutdown.
1380 @raise TestFail: if the shutdown_action() failed to turn DUT off.
1381 """
1382 self._call_action(shutdown_action)
1383 logging.info('Wait to ensure DUT shut down...')
1384 try:
1385 if shutdown_timeout is None:
1386 shutdown_timeout = self.faft_config.shutdown_timeout
1387 self.wait_for_client(timeout=shutdown_timeout)
1388 raise error.TestFail(
1389 'Should shut the device down after calling %s.' %
1390 str(shutdown_action))
1391 except ConnectionError:
1392 logging.info(
1393 'DUT is surely shutdown. We are going to power it on again...')
1394
1395 if pre_power_action:
1396 self._call_action(pre_power_action)
1397 self.servo.power_short_press()
1398 if post_power_action:
1399 self._call_action(post_power_action)
1400
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001401 def get_bootid(self, retry=3):
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001402 """
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001403 Return the bootid.
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001404 """
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001405 boot_id = None
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001406 while retry:
1407 try:
1408 boot_id = self._client.get_boot_id()
1409 break
1410 except error.AutoservRunError:
1411 retry -= 1
1412 if retry:
1413 logging.info('Retry to get boot_id...')
1414 else:
1415 logging.warning('Failed to get boot_id.')
1416 logging.info('boot_id: %s', boot_id)
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001417 return boot_id
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001418
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001419 def check_state(self, func):
1420 """
1421 Wrapper around _call_action with check_status set to True. This is a
1422 helper function to be used by tests and is currently implemented by
1423 calling _call_action with check_status=True.
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001424
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001425 TODO: This function's arguments need to be made more stringent. And
1426 its functionality should be moved over to check functions directly in
1427 the future.
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001428
Yusuf Mohsinallyab1b5fc2014-05-08 12:46:10 -07001429 @param func: A function, or a tuple (function, args, error_msg),
1430 in which, args and error_msg are optional. args is
1431 either a value or a tuple if multiple arguments.
1432 This can also be a list containing multiple
1433 function or tuple. In this case, these actions are
1434 called in sequence.
1435 @return: The result value of the action function.
1436 @raise TestFail: If the function does notsucceed.
1437 """
1438 logging.info("-[FAFT]-[ start stepstate_checker ]----------")
1439 self._call_action(func, check_status=True)
1440 logging.info("-[FAFT]-[ end state_checker ]----------------")
Yusuf Mohsinally05c3c552014-05-07 23:56:42 -07001441
1442 def get_current_firmware_sha(self):
1443 """Get current firmware sha of body and vblock.
1444
1445 @return: Current firmware sha follows the order (
1446 vblock_a_sha, body_a_sha, vblock_b_sha, body_b_sha)
1447 """
1448 current_firmware_sha = (self.faft_client.bios.get_sig_sha('a'),
1449 self.faft_client.bios.get_body_sha('a'),
1450 self.faft_client.bios.get_sig_sha('b'),
1451 self.faft_client.bios.get_body_sha('b'))
1452 if not all(current_firmware_sha):
1453 raise error.TestError('Failed to get firmware sha.')
1454 return current_firmware_sha
1455
1456 def is_firmware_changed(self):
1457 """Check if the current firmware changed, by comparing its SHA.
1458
1459 @return: True if it is changed, otherwise Flase.
1460 """
1461 # Device may not be rebooted after test.
1462 self.faft_client.bios.reload()
1463
1464 current_sha = self.get_current_firmware_sha()
1465
1466 if current_sha == self._backup_firmware_sha:
1467 return False
1468 else:
1469 corrupt_VBOOTA = (current_sha[0] != self._backup_firmware_sha[0])
1470 corrupt_FVMAIN = (current_sha[1] != self._backup_firmware_sha[1])
1471 corrupt_VBOOTB = (current_sha[2] != self._backup_firmware_sha[2])
1472 corrupt_FVMAINB = (current_sha[3] != self._backup_firmware_sha[3])
1473 logging.info("Firmware changed:")
1474 logging.info('VBOOTA is changed: %s', corrupt_VBOOTA)
1475 logging.info('VBOOTB is changed: %s', corrupt_VBOOTB)
1476 logging.info('FVMAIN is changed: %s', corrupt_FVMAIN)
1477 logging.info('FVMAINB is changed: %s', corrupt_FVMAINB)
1478 return True
1479
1480 def backup_firmware(self, suffix='.original'):
1481 """Backup firmware to file, and then send it to host.
1482
1483 @param suffix: a string appended to backup file name
1484 """
1485 remote_temp_dir = self.faft_client.system.create_temp_dir()
1486 self.faft_client.bios.dump_whole(os.path.join(remote_temp_dir, 'bios'))
1487 self._client.get_file(os.path.join(remote_temp_dir, 'bios'),
1488 os.path.join(self.resultsdir, 'bios' + suffix))
1489
1490 self._backup_firmware_sha = self.get_current_firmware_sha()
1491 logging.info('Backup firmware stored in %s with suffix %s',
1492 self.resultsdir, suffix)
1493
1494 def is_firmware_saved(self):
1495 """Check if a firmware saved (called backup_firmware before).
1496
1497 @return: True if the firmware is backuped; otherwise False.
1498 """
1499 return self._backup_firmware_sha != ()
1500
1501 def clear_saved_firmware(self):
1502 """Clear the firmware saved by the method backup_firmware."""
1503 self._backup_firmware_sha = ()
1504
1505 def restore_firmware(self, suffix='.original'):
1506 """Restore firmware from host in resultsdir.
1507
1508 @param suffix: a string appended to backup file name
1509 """
1510 if not self.is_firmware_changed():
1511 return
1512
1513 # Backup current corrupted firmware.
1514 self.backup_firmware(suffix='.corrupt')
1515
1516 # Restore firmware.
1517 remote_temp_dir = self.faft_client.system.create_temp_dir()
1518 self._client.send_file(os.path.join(self.resultsdir, 'bios' + suffix),
1519 os.path.join(remote_temp_dir, 'bios'))
1520
1521 self.faft_client.bios.write_whole(
1522 os.path.join(remote_temp_dir, 'bios'))
1523 self.sync_and_warm_reboot()
1524 self.wait_for_client_offline()
1525 self.wait_dev_screen_and_ctrl_d()
1526 self.wait_for_client()
1527
1528 logging.info('Successfully restore firmware.')
1529
1530 def setup_firmwareupdate_shellball(self, shellball=None):
1531 """Deside a shellball to use in firmware update test.
1532
1533 Check if there is a given shellball, and it is a shell script. Then,
1534 send it to the remote host. Otherwise, use
1535 /usr/sbin/chromeos-firmwareupdate.
1536
1537 @param shellball: path of a shellball or default to None.
1538
1539 @return: Path of shellball in remote host. If use default shellball,
1540 reutrn None.
1541 """
1542 updater_path = None
1543 if shellball:
1544 # Determine the firmware file is a shellball or a raw binary.
1545 is_shellball = (utils.system_output("file %s" % shellball).find(
1546 "shell script") != -1)
1547 if is_shellball:
1548 logging.info('Device will update firmware with shellball %s',
1549 shellball)
1550 temp_dir = self.faft_client.system.create_temp_dir(
1551 'shellball_')
1552 temp_shellball = os.path.join(temp_dir, 'updater.sh')
1553 self._client.send_file(shellball, temp_shellball)
1554 updater_path = temp_shellball
1555 else:
1556 raise error.TestFail(
1557 'The given shellball is not a shell script.')
1558 return updater_path
1559
1560 def is_kernel_changed(self):
1561 """Check if the current kernel is changed, by comparing its SHA1 hash.
1562
1563 @return: True if it is changed; otherwise, False.
1564 """
1565 changed = False
1566 for p in ('A', 'B'):
1567 backup_sha = self._backup_kernel_sha.get(p, None)
1568 current_sha = self.faft_client.kernel.get_sha(p)
1569 if backup_sha != current_sha:
1570 changed = True
1571 logging.info('Kernel %s is changed', p)
1572 return changed
1573
1574 def backup_kernel(self, suffix='.original'):
1575 """Backup kernel to files, and the send them to host.
1576
1577 @param suffix: a string appended to backup file name.
1578 """
1579 remote_temp_dir = self.faft_client.system.create_temp_dir()
1580 for p in ('A', 'B'):
1581 remote_path = os.path.join(remote_temp_dir, 'kernel_%s' % p)
1582 self.faft_client.kernel.dump(p, remote_path)
1583 self._client.get_file(
1584 remote_path,
1585 os.path.join(self.resultsdir, 'kernel_%s%s' % (p, suffix)))
1586 self._backup_kernel_sha[p] = self.faft_client.kernel.get_sha(p)
1587 logging.info('Backup kernel stored in %s with suffix %s',
1588 self.resultsdir, suffix)
1589
1590 def is_kernel_saved(self):
1591 """Check if kernel images are saved (backup_kernel called before).
1592
1593 @return: True if the kernel is saved; otherwise, False.
1594 """
1595 return len(self._backup_kernel_sha) != 0
1596
1597 def clear_saved_kernel(self):
1598 """Clear the kernel saved by backup_kernel()."""
1599 self._backup_kernel_sha = dict()
1600
1601 def restore_kernel(self, suffix='.original'):
1602 """Restore kernel from host in resultsdir.
1603
1604 @param suffix: a string appended to backup file name.
1605 """
1606 if not self.is_kernel_changed():
1607 return
1608
1609 # Backup current corrupted kernel.
1610 self.backup_kernel(suffix='.corrupt')
1611
1612 # Restore kernel.
1613 remote_temp_dir = self.faft_client.system.create_temp_dir()
1614 for p in ('A', 'B'):
1615 remote_path = os.path.join(remote_temp_dir, 'kernel_%s' % p)
1616 self._client.send_file(
1617 os.path.join(self.resultsdir, 'kernel_%s%s' % (p, suffix)),
1618 remote_path)
1619 self.faft_client.kernel.write(p, remote_path)
1620
1621 self.sync_and_warm_reboot()
1622 self.wait_for_client_offline()
1623 self.wait_dev_screen_and_ctrl_d()
1624 self.wait_for_client()
1625
1626 logging.info('Successfully restored kernel.')
1627
1628 def backup_cgpt_attributes(self):
1629 """Backup CGPT partition table attributes."""
1630 self._backup_cgpt_attr = self.faft_client.cgpt.get_attributes()
1631
1632 def restore_cgpt_attributes(self):
1633 """Restore CGPT partition table attributes."""
1634 current_table = self.faft_client.cgpt.get_attributes()
1635 if current_table == self._backup_cgpt_attr:
1636 return
1637 logging.info('CGPT table is changed. Original: %r. Current: %r.',
1638 self._backup_cgpt_attr,
1639 current_table)
1640 self.faft_client.cgpt.set_attributes(self._backup_cgpt_attr)
1641
1642 self.sync_and_warm_reboot()
1643 self.wait_for_client_offline()
1644 self.wait_dev_screen_and_ctrl_d()
1645 self.wait_for_client()
1646
1647 logging.info('Successfully restored CGPT table.')