blob: 9b16753c480176bc9296223a0a6e043e1983fa21 [file] [log] [blame]
You-Cheng Syuf0f4be12017-12-05 16:33:53 +08001#!/usr/bin/env python
Jon Salze60307f2014-08-05 16:20:00 +08002# -*- coding: utf-8 -*-
3# Copyright 2014 The Chromium OS Authors. All rights reserved.
Tammo Spalink9a96b8a2012-04-03 11:10:41 +08004# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
Jon Salze60307f2014-08-05 16:20:00 +08007
Tammo Spalink9a96b8a2012-04-03 11:10:41 +08008"""Google Factory Tool.
9
You-Cheng Syu461ec032017-03-06 15:56:58 +080010This tool is intended to be used on factory assembly lines. It
Tammo Spalink9a96b8a2012-04-03 11:10:41 +080011provides all of the Google required test functionality and must be run
12on each device as part of the assembly process.
13"""
14
Tammo Spalink9a96b8a2012-04-03 11:10:41 +080015import logging
16import os
Jon Salz65266432012-07-30 19:02:49 +080017import pipes
Tammo Spalink9a96b8a2012-04-03 11:10:41 +080018import re
19import sys
Peter Shihfdf17682017-05-26 11:38:39 +080020from tempfile import gettempdir
Cheng-Yi Chiang9fc121c2014-01-27 11:23:22 +080021import threading
Hung-Te Lin6bd16472012-06-20 16:26:47 +080022import time
Jon Salza88b83b2013-05-27 20:00:35 +080023import xmlrpclib
Peter Shihfdf17682017-05-26 11:38:39 +080024
Peter Shihfdf17682017-05-26 11:38:39 +080025import factory_common # pylint: disable=unused-import
Wei-Han Chen0a3320e2016-04-23 01:32:07 +080026from cros.factory.gooftool.common import ExecFactoryPar
Hung-Te Lin0e0f9362015-11-18 18:18:05 +080027from cros.factory.gooftool.common import Shell
Peter Shihfdf17682017-05-26 11:38:39 +080028from cros.factory.gooftool.core import Gooftool
29from cros.factory.gooftool import crosfw
Peter Shihfdf17682017-05-26 11:38:39 +080030from cros.factory.gooftool import report_upload
Hung-Te Lin604e0c22015-11-24 15:17:07 +080031from cros.factory.hwid.v3 import hwid_utils
Yong Hong863d3262017-10-30 16:23:34 +080032from cros.factory.probe.functions import chromeos_firmware
Wei-Han Chen2ebb92d2016-01-12 14:51:41 +080033from cros.factory.test.env import paths
Peter Shihfdf17682017-05-26 11:38:39 +080034from cros.factory.test import event_log
Wei-Han Chenaff56232016-04-16 09:17:59 +080035from cros.factory.test.rules import phase
Hung-Te Lin3f096842016-01-13 17:37:06 +080036from cros.factory.test.rules.privacy import FilterDict
Peter Shihfdf17682017-05-26 11:38:39 +080037from cros.factory.utils import argparse_utils
Hung-Te Lin03bf7ab2016-06-16 17:26:19 +080038from cros.factory.utils.argparse_utils import CmdArg
Hung-Te Lin03bf7ab2016-06-16 17:26:19 +080039from cros.factory.utils.argparse_utils import ParseCmdline
40from cros.factory.utils.argparse_utils import verbosity_cmd_arg
Peter Shihfdf17682017-05-26 11:38:39 +080041from cros.factory.utils.debug_utils import SetupLogging
Jon Salz40b9f822014-07-25 16:39:55 +080042from cros.factory.utils import file_utils
Peter Shih67c7c0f2018-02-26 11:23:59 +080043from cros.factory.utils.process_utils import Spawn
Wei-Han Chena5c01a02016-04-23 19:27:19 +080044from cros.factory.utils import sys_utils
Chun-Ta Lin53cbbd52016-06-08 21:42:19 +080045from cros.factory.utils import time_utils
Joel Kitchingd3bc2662014-12-16 16:03:32 -080046from cros.factory.utils.type_utils import Error
Tammo Spalink86a61c62012-05-25 15:10:35 +080047
Tammo Spalink5c699832012-07-03 17:50:39 +080048
Tammo Spalink5c699832012-07-03 17:50:39 +080049# TODO(tammo): Replace calls to sys.exit with raise Exit, and maybe
50# treat that specially (as a smoot exit, as opposed to the more
51# verbose output for generic Error).
52
Cheng-Yi Chiang9fc121c2014-01-27 11:23:22 +080053_global_gooftool = None
54_gooftool_lock = threading.Lock()
Tammo Spalink5c699832012-07-03 17:50:39 +080055
Hung-Te Lin56b18402015-01-16 14:52:30 +080056
Ricky Lianga70a1202013-03-15 15:03:17 +080057def GetGooftool(options):
Peter Shihfdf17682017-05-26 11:38:39 +080058 global _global_gooftool # pylint: disable=global-statement
Ricky Lianga70a1202013-03-15 15:03:17 +080059
Cheng-Yi Chiang9fc121c2014-01-27 11:23:22 +080060 if _global_gooftool is None:
61 with _gooftool_lock:
Shen-En Shihc5d15d62017-08-04 13:02:59 +080062 if _global_gooftool is None:
63 project = getattr(options, 'project', None)
64 hwdb_path = getattr(options, 'hwdb_path', None)
65 _global_gooftool = Gooftool(hwid_version=3, project=project,
66 hwdb_path=hwdb_path)
Cheng-Yi Chiang9fc121c2014-01-27 11:23:22 +080067
68 return _global_gooftool
Ricky Lianga70a1202013-03-15 15:03:17 +080069
Hung-Te Lin56b18402015-01-16 14:52:30 +080070
Ting Shen18a06382016-08-30 16:18:21 +080071def Command(cmd_name, *args, **kwargs):
You-Cheng Syu8fc2a602017-12-22 17:05:05 +080072 """Decorator for commands in gooftool.
Ting Shen18a06382016-08-30 16:18:21 +080073
74 This is similar to argparse_utils.Command, but all gooftool commands
75 can be waived during `gooftool finalize` or `gooftool verify` using
Wei-Han Chen60c5d332017-01-05 17:15:10 +080076 --waive_list or --skip_list option.
Ting Shen18a06382016-08-30 16:18:21 +080077 """
78 def Decorate(fun):
Wei-Han Chen60c5d332017-01-05 17:15:10 +080079 def CommandWithWaiveSkipCheck(options):
Ting Shen18a06382016-08-30 16:18:21 +080080 waive_list = vars(options).get('waive_list', [])
Wei-Han Chen60c5d332017-01-05 17:15:10 +080081 skip_list = vars(options).get('skip_list', [])
82 if phase.GetPhase() >= phase.PVT_DOGFOOD and (
83 waive_list != [] or skip_list != []):
Ting Shen18a06382016-08-30 16:18:21 +080084 raise Error(
Wei-Han Chen60c5d332017-01-05 17:15:10 +080085 'waive_list and skip_list should be empty for phase %s' %
86 phase.GetPhase())
Ting Shen18a06382016-08-30 16:18:21 +080087
Wei-Han Chen60c5d332017-01-05 17:15:10 +080088 if cmd_name not in skip_list:
89 try:
90 fun(options)
91 except Exception as e:
92 if cmd_name in waive_list:
93 logging.exception(e)
94 else:
95 raise
Ting Shen18a06382016-08-30 16:18:21 +080096
97 return argparse_utils.Command(cmd_name, *args, **kwargs)(
Wei-Han Chen60c5d332017-01-05 17:15:10 +080098 CommandWithWaiveSkipCheck)
Ting Shen18a06382016-08-30 16:18:21 +080099 return Decorate
100
101
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800102@Command('write_hwid',
103 CmdArg('hwid', metavar='HWID', help='HWID string'))
Andy Chengc92e6f92012-11-20 16:55:53 +0800104def WriteHWID(options):
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800105 """Write specified HWID value into the system BB."""
Andy Cheng7a76cb82012-11-19 18:08:19 +0800106
Tammo Spalink95c43732012-07-25 15:57:14 -0700107 logging.info('writing hwid string %r', options.hwid)
Ricky Lianga70a1202013-03-15 15:03:17 +0800108 GetGooftool(options).WriteHWID(options.hwid)
Andy Cheng0465d132013-03-20 12:12:06 +0800109 event_log.Log('write_hwid', hwid=options.hwid)
Tammo Spalink95c43732012-07-25 15:57:14 -0700110 print 'Wrote HWID: %r' % options.hwid
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800111
112
Yong Hongc3765412017-12-26 23:12:15 +0800113@Command('read_hwid')
114def ReadHWID(options):
115 """Read the HWID string from GBB."""
116
117 logging.info('reading the hwid string')
118 print GetGooftool(options).ReadHWID()
119
120
Yong Hong5408f652017-07-11 19:20:25 +0800121_project_cmd_arg = CmdArg(
122 '--project', metavar='PROJECT',
123 default=None, help='Project name to test.')
Ricky Liang53390232013-03-08 15:37:57 +0800124
Tammo Spalink8fab5312012-05-28 18:33:30 +0800125_hwdb_path_cmd_arg = CmdArg(
126 '--hwdb_path', metavar='PATH',
Yong Hong5c6dcd52017-12-27 11:05:01 +0800127 default=hwid_utils.GetDefaultDataPath(),
Tammo Spalink8fab5312012-05-28 18:33:30 +0800128 help='Path to the HWID database.')
129
Tammo Spalink95c43732012-07-25 15:57:14 -0700130_hwid_status_list_cmd_arg = CmdArg(
Hung-Te Lin56b18402015-01-16 14:52:30 +0800131 '--status', nargs='*', default=['supported'],
132 help='allow only HWIDs with these status values')
Tammo Spalink95c43732012-07-25 15:57:14 -0700133
Jon Salzce124fb2012-10-02 17:42:03 +0800134_probe_results_cmd_arg = CmdArg(
Yong Hong55050c12018-02-27 18:19:47 +0800135 '--probe_results', metavar='RESULTS.json',
136 help=('Output from "hwid probe" (used instead of probing this system).'))
Jon Salzce124fb2012-10-02 17:42:03 +0800137
Ricky Liang53390232013-03-08 15:37:57 +0800138_device_info_cmd_arg = CmdArg(
Ricky Liangf89f73a2013-03-19 05:00:24 +0800139 '--device_info', metavar='DEVICE_INFO.yaml', default=None,
You-Cheng Syu8fc2a602017-12-22 17:05:05 +0800140 help='A dict of device info to use instead of fetching from shopfloor '
Ricky Liang53390232013-03-08 15:37:57 +0800141 'server.')
142
Jon Salzce124fb2012-10-02 17:42:03 +0800143_hwid_cmd_arg = CmdArg(
144 '--hwid', metavar='HWID',
Ricky Lianga70a1202013-03-15 15:03:17 +0800145 help='HWID to verify (instead of the currently set HWID of this system).')
Jon Salzce124fb2012-10-02 17:42:03 +0800146
Yong Hong68a0e0d2017-12-20 19:06:54 +0800147_hwid_run_vpd_cmd_arg = CmdArg(
148 '--hwid-run-vpd', action='store_true',
149 help=('Specify the hwid utility to obtain the vpd data by running the '
150 '`vpd` commandline tool.'))
151
152_hwid_vpd_data_file_cmd_arg = CmdArg(
153 '--hwid-vpd-data-file', metavar='FILE.json', type=str, default=None,
154 help=('Specify the hwid utility to obtain the vpd data from the specified '
155 'file.'))
156
Bernie Thompson3c11c872013-07-22 18:22:45 -0700157_rma_mode_cmd_arg = CmdArg(
158 '--rma_mode', action='store_true',
159 help='Enable RMA mode, do not check for deprecated components.')
Tammo Spalink95c43732012-07-25 15:57:14 -0700160
Chih-Yu Huang714dbc42015-07-21 16:42:16 +0800161_cros_core_cmd_arg = CmdArg(
162 '--cros_core', action='store_true',
163 help='Finalize for ChromeOS Core devices (may add or remove few test '
Hung-Te Lin53c49402017-07-26 13:10:58 +0800164 'items. For example, registration codes or firmware bitmap '
Chih-Yu Huang714dbc42015-07-21 16:42:16 +0800165 'locale settings).')
166
Yilun Lin599833f2017-12-22 14:07:46 +0800167_chromebox_cmd_arg = CmdArg(
168 '--chromebox', action='store_true', default=None,
169 help='Finalize for ChromeBox devices (may add or remove few test '
170 'items. For example, VerifyECKey).')
171
bowgotsai13820f42015-09-10 23:18:04 +0800172_enforced_release_channels_cmd_arg = CmdArg(
173 '--enforced_release_channels', nargs='*', default=None,
174 help='Enforced release image channels.')
175
Yilun Lin34f54802017-11-16 11:58:25 +0800176_ec_pubkey_path_cmd_arg = CmdArg(
177 '--ec_pubkey_path',
178 default=None,
179 help='Path to public key in vb2 format. Verify EC key with pubkey file.')
180
181_ec_pubkey_hash_cmd_arg = CmdArg(
182 '--ec_pubkey_hash',
183 default=None,
184 help='A string for public key hash. Verify EC key with the given hash.')
185
Hung-Te Lincdb96522016-04-15 16:51:10 +0800186_release_rootfs_cmd_arg = CmdArg(
187 '--release_rootfs', help='Location of release image rootfs partition.')
188
189_firmware_path_cmd_arg = CmdArg(
190 '--firmware_path', help='Location of firmware image partition.')
Ricky Liang43b879b2014-02-24 11:36:55 +0800191
Wei-Han Chenbe1355a2016-04-24 19:31:03 +0800192_shopfloor_url_args_cmd_arg = CmdArg(
193 '--shopfloor_url',
Earl Ou51182222016-09-09 12:16:48 +0800194 help='Shopfloor server url to be informed when wiping is done. '
195 'After wiping, a XML-RPC request will be sent to the '
196 'given url to indicate the completion of wiping.')
Wei-Han Chenbe1355a2016-04-24 19:31:03 +0800197
198_station_ip_cmd_arg = CmdArg(
199 '--station_ip',
200 help='IP of remote station')
201
202_station_port_cmd_arg = CmdArg(
203 '--station_port',
204 help='Port on remote station')
205
206_wipe_finish_token_cmd_arg = CmdArg(
207 '--wipe_finish_token',
208 help='Required token when notifying station after wipe finished')
209
Ting Shen18a06382016-08-30 16:18:21 +0800210_waive_list_cmd_arg = CmdArg(
211 '--waive_list', nargs='*', default=[], metavar='SUBCMD',
You-Cheng Syu8fc2a602017-12-22 17:05:05 +0800212 help='A list of waived checks, separated by whitespace. '
213 'Each item should be a sub-command of gooftool. '
Ting Shen18a06382016-08-30 16:18:21 +0800214 'e.g. "gooftool verify --waive_list verify_tpm clear_gbb_flags".')
215
Wei-Han Chen60c5d332017-01-05 17:15:10 +0800216_skip_list_cmd_arg = CmdArg(
217 '--skip_list', nargs='*', default=[], metavar='SUBCMD',
You-Cheng Syu8fc2a602017-12-22 17:05:05 +0800218 help='A list of skipped checks, separated by whitespace. '
219 'Each item should be a sub-command of gooftool. '
Wei-Han Chen60c5d332017-01-05 17:15:10 +0800220 'e.g. "gooftool verify --skip_list verify_tpm clear_gbb_flags".')
221
Wei-Han Cheneb4f9a22018-03-09 14:52:23 +0800222_rlz_embargo_end_date_offset_cmd_arg = CmdArg(
223 '--embargo_offset', type=int, default=7, choices=xrange(7, 15),
224 help='Change the offset of embargo end date, cannot less than 7 days or '
225 'more than 14 days.')
226
Tammo Spalink8fab5312012-05-28 18:33:30 +0800227
Yilun Lin34f54802017-11-16 11:58:25 +0800228@Command(
229 'verify_ec_key',
230 _ec_pubkey_path_cmd_arg,
231 _ec_pubkey_hash_cmd_arg)
232def VerifyECKey(options):
233 """Verify EC key."""
234 return GetGooftool(options).VerifyECKey(
235 options.ec_pubkey_path, options.ec_pubkey_hash)
236
237
Hung-Te Line1d80f62016-03-31 14:58:13 +0800238@Command('verify_keys',
Hung-Te Lincdb96522016-04-15 16:51:10 +0800239 _release_rootfs_cmd_arg,
240 _firmware_path_cmd_arg)
Peter Shihfdf17682017-05-26 11:38:39 +0800241def VerifyKeys(options):
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800242 """Verify keys in firmware and SSD match."""
Hung-Te Line1d80f62016-03-31 14:58:13 +0800243 return GetGooftool(options).VerifyKeys(
Hung-Te Lincdb96522016-04-15 16:51:10 +0800244 options.release_rootfs, options.firmware_path)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800245
246
247@Command('set_fw_bitmap_locale')
Peter Shihfdf17682017-05-26 11:38:39 +0800248def SetFirmwareBitmapLocale(options):
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800249 """Use VPD locale value to set firmware bitmap default language."""
Andy Cheng7a76cb82012-11-19 18:08:19 +0800250
Ricky Lianga70a1202013-03-15 15:03:17 +0800251 (index, locale) = GetGooftool(options).SetFirmwareBitmapLocale()
Andy Cheng2582d292012-12-04 17:38:28 +0800252 logging.info('Firmware bitmap initial locale set to %d (%s).',
253 index, locale)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800254
255
Hung-Te Line1d80f62016-03-31 14:58:13 +0800256@Command('verify_system_time',
Hung-Te Lincdb96522016-04-15 16:51:10 +0800257 _release_rootfs_cmd_arg)
Peter Shihfdf17682017-05-26 11:38:39 +0800258def VerifySystemTime(options):
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800259 """Verify system time is later than release filesystem creation time."""
Andy Cheng7a76cb82012-11-19 18:08:19 +0800260
Hung-Te Lincdb96522016-04-15 16:51:10 +0800261 return GetGooftool(options).VerifySystemTime(options.release_rootfs)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800262
263
Hung-Te Line1d80f62016-03-31 14:58:13 +0800264@Command('verify_rootfs',
Hung-Te Lincdb96522016-04-15 16:51:10 +0800265 _release_rootfs_cmd_arg)
Peter Shihfdf17682017-05-26 11:38:39 +0800266def VerifyRootFs(options):
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800267 """Verify rootfs on SSD is valid by checking hash."""
Andy Cheng7a76cb82012-11-19 18:08:19 +0800268
Hung-Te Line1d80f62016-03-31 14:58:13 +0800269 return GetGooftool(options).VerifyRootFs(options.release_rootfs)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800270
Hung-Te Lin56b18402015-01-16 14:52:30 +0800271
Cheng-Yi Chiang676b5292013-06-18 12:05:33 +0800272@Command('verify_tpm')
Peter Shihfdf17682017-05-26 11:38:39 +0800273def VerifyTPM(options):
Cheng-Yi Chiang676b5292013-06-18 12:05:33 +0800274 """Verify TPM is cleared."""
275
276 return GetGooftool(options).VerifyTPM()
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800277
Hung-Te Lin56b18402015-01-16 14:52:30 +0800278
Hung-Te Lindd708d42014-07-11 17:05:01 +0800279@Command('verify_me_locked')
Peter Shihfdf17682017-05-26 11:38:39 +0800280def VerifyManagementEngineLocked(options):
You-Cheng Syu461ec032017-03-06 15:56:58 +0800281 """Verify Management Engine is locked."""
Hung-Te Lindd708d42014-07-11 17:05:01 +0800282
283 return GetGooftool(options).VerifyManagementEngineLocked()
284
Hung-Te Lin56b18402015-01-16 14:52:30 +0800285
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800286@Command('verify_switch_wp')
Peter Shihfdf17682017-05-26 11:38:39 +0800287def VerifyWPSwitch(options):
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800288 """Verify hardware write protection switch is enabled."""
Andy Cheng7a76cb82012-11-19 18:08:19 +0800289
Ricky Lianga70a1202013-03-15 15:03:17 +0800290 GetGooftool(options).VerifyWPSwitch()
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800291
292
293@Command('verify_switch_dev')
Peter Shihfdf17682017-05-26 11:38:39 +0800294def VerifyDevSwitch(options):
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800295 """Verify developer switch is disabled."""
Andy Cheng7a76cb82012-11-19 18:08:19 +0800296
Ricky Lianga70a1202013-03-15 15:03:17 +0800297 if GetGooftool(options).CheckDevSwitchForDisabling():
Hung-Te Lind7d34722012-07-26 16:48:35 +0800298 logging.warn('VerifyDevSwitch: No physical switch.')
Andy Cheng0465d132013-03-20 12:12:06 +0800299 event_log.Log('switch_dev', type='virtual switch')
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800300
301
Hung-Te Lin53c49402017-07-26 13:10:58 +0800302@Command('verify_vpd')
303def VerifyVPD(options):
304 """Verify that VPD values are properly set.
Jon Salzadd90d32014-04-29 16:16:27 +0800305
Hung-Te Lin53c49402017-07-26 13:10:58 +0800306 Check if mandatory fields are set, and deprecated fields don't exist.
Jon Salzadd90d32014-04-29 16:16:27 +0800307 """
Hung-Te Lin53c49402017-07-26 13:10:58 +0800308 return GetGooftool(options).VerifyVPD()
Jon Salzadd90d32014-04-29 16:16:27 +0800309
310
bowgotsai13820f42015-09-10 23:18:04 +0800311@Command('verify_release_channel',
312 _enforced_release_channels_cmd_arg)
Peter Shihfdf17682017-05-26 11:38:39 +0800313def VerifyReleaseChannel(options):
bowgotsai529139c2015-05-30 01:39:49 +0800314 """Verify that release image channel is correct.
315
316 ChromeOS has four channels: canary, dev, beta and stable.
317 The last three channels support image auto-updates, checks
318 that release image channel is one of them.
319 """
bowgotsai13820f42015-09-10 23:18:04 +0800320 return GetGooftool(options).VerifyReleaseChannel(
321 options.enforced_release_channels)
bowgotsai529139c2015-05-30 01:39:49 +0800322
323
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800324@Command('write_protect')
Peter Shihfdf17682017-05-26 11:38:39 +0800325def EnableFwWp(options):
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800326 """Enable then verify firmware write protection."""
Peter Shihfdf17682017-05-26 11:38:39 +0800327 del options # Unused.
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800328
Yong Hongdad230a2017-08-30 22:25:19 +0800329 def WriteProtect(fw):
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800330 """Calculate protection size, then invoke flashrom.
331
Yong Hongdad230a2017-08-30 22:25:19 +0800332 The region (offset and size) to write protect may be different per chipset
333 and firmware layout, so we have to read the WP_RO section from FMAP to
334 decide that.
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800335 """
Hung-Te Lin7ea39e82012-07-31 18:39:33 +0800336 wp_section = 'WP_RO'
Hung-Te Lin7ea39e82012-07-31 18:39:33 +0800337
Yong Hongdad230a2017-08-30 22:25:19 +0800338 fmap_image = fw.GetFirmwareImage(
339 sections=(['FMAP'] if fw.target == crosfw.TARGET_MAIN else None))
340 if not fmap_image.has_section(wp_section):
341 raise Error('Could not find %s firmware section: %s' %
342 (fw.target.upper(), wp_section))
343
344 section_data = fw.GetFirmwareImage(
345 sections=[wp_section]).get_section_area(wp_section)
346 ro_offset, ro_size = section_data[0 : 2]
347
348 logging.debug('write protecting %s [off=%x size=%x]', fw.target.upper(),
Hung-Te Lin7ea39e82012-07-31 18:39:33 +0800349 ro_offset, ro_size)
Yong Hongdad230a2017-08-30 22:25:19 +0800350 crosfw.Flashrom(fw.target).EnableWriteProtection(ro_offset, ro_size)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800351
Yong Hongdad230a2017-08-30 22:25:19 +0800352 WriteProtect(crosfw.LoadMainFirmware())
Andy Cheng0465d132013-03-20 12:12:06 +0800353 event_log.Log('wp', fw='main')
Hung-Te Lind3b124c2016-10-20 22:22:31 +0800354
355 # Some EC (mostly PD) does not support "RO NOW". Instead they will only set
356 # "RO_AT_BOOT" when you request to enable RO (These platforms consider
357 # --wp-range with right range identical to --wp-enable), and requires a
358 # 'ectool reboot_ec RO at-shutdown; reboot' to let the RO take effect.
Hung-Te Lin0d10b562016-12-28 10:58:07 +0800359 # After reboot, "flashrom -p host --wp-status" will return protected range.
Hung-Te Lind3b124c2016-10-20 22:22:31 +0800360 # If you don't reboot, returned range will be (0, 0), and running command
361 # "ectool flashprotect" will not have RO_NOW.
362
Yong Hongdad230a2017-08-30 22:25:19 +0800363 for fw in [crosfw.LoadEcFirmware(), crosfw.LoadPDFirmware()]:
364 if fw.GetChipId() is None:
Hung-Te Lind3b124c2016-10-20 22:22:31 +0800365 logging.warning('%s not write protected (seems there is no %s flash).',
Yong Hongdad230a2017-08-30 22:25:19 +0800366 fw.target.upper(), fw.target.upper())
Hung-Te Lind3b124c2016-10-20 22:22:31 +0800367 continue
Yong Hongdad230a2017-08-30 22:25:19 +0800368 WriteProtect(fw)
369 event_log.Log('wp', fw=fw.target)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800370
371
372@Command('clear_gbb_flags')
Peter Shihfdf17682017-05-26 11:38:39 +0800373def ClearGBBFlags(options):
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800374 """Zero out the GBB flags, in preparation for transition to release state.
375
376 No GBB flags are set in release/shipping state, but they are useful
Hung-Te Lin879cff42017-06-19 12:46:37 +0800377 for factory/development. See "futility gbb --flags" for details.
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800378 """
Andy Cheng7a76cb82012-11-19 18:08:19 +0800379
Ricky Lianga70a1202013-03-15 15:03:17 +0800380 GetGooftool(options).ClearGBBFlags()
Andy Cheng0465d132013-03-20 12:12:06 +0800381 event_log.Log('clear_gbb_flags')
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800382
383
Jon Salzaa3a30e2013-05-15 15:56:28 +0800384@Command('clear_factory_vpd_entries')
Peter Shihfdf17682017-05-26 11:38:39 +0800385def ClearFactoryVPDEntries(options):
Jon Salzaa3a30e2013-05-15 15:56:28 +0800386 """Clears factory.* items in the RW VPD."""
387 entries = GetGooftool(options).ClearFactoryVPDEntries()
388 event_log.Log('clear_factory_vpd_entries', entries=FilterDict(entries))
389
390
Mattias Nisslercca761b2015-04-15 21:53:04 +0200391@Command('generate_stable_device_secret')
Peter Shihfdf17682017-05-26 11:38:39 +0800392def GenerateStableDeviceSecret(options):
You-Cheng Syu461ec032017-03-06 15:56:58 +0800393 """Generates a fresh stable device secret and stores it in the RO VPD."""
Mattias Nisslercca761b2015-04-15 21:53:04 +0200394 GetGooftool(options).GenerateStableDeviceSecret()
395 event_log.Log('generate_stable_device_secret')
396
Wei-Han Chenbe1355a2016-04-24 19:31:03 +0800397
Shen-En Shihd078a7c2017-08-04 13:33:49 +0800398@Command('cr50_set_board_id')
399def Cr50SetBoardId(options):
400 """Set the board id and flag in the Cr50 chip."""
401 GetGooftool(options).Cr50SetBoardId()
402 event_log.Log('cr50_set_board_id')
403
404
Marco Chen7a97e162018-05-03 19:04:03 +0800405@Command('cr50_disable_rma_mode')
Marco Chen44a666d2018-07-13 21:01:50 +0800406def Cr50DisableFactoryMode(options):
Cheng-Han Yang08333af2017-12-18 17:22:38 +0800407 """Reset Cr50 state back to default state after RMA."""
Marco Chen44a666d2018-07-13 21:01:50 +0800408 return GetGooftool(options).Cr50DisableFactoryMode()
Cheng-Han Yang08333af2017-12-18 17:22:38 +0800409
410
Earl Ou564a7872016-10-05 10:22:00 +0800411@Command('enable_release_partition',
412 CmdArg('--release_rootfs',
413 help=('path to the release rootfs device. If not specified, '
414 'the default (5th) partition will be used.')))
415def EnableReleasePartition(options):
416 """Enables a release image partition on the disk."""
417 GetGooftool(options).EnableReleasePartition(options.release_rootfs)
418
419
Shun-Hsing Oucdc64e12015-01-14 22:07:33 +0800420@Command('wipe_in_place',
421 CmdArg('--fast', action='store_true',
Shun-Hsing Ou8d3c40a2015-10-08 18:16:08 +0800422 help='use non-secure but faster wipe method.'),
Wei-Han Chenbe1355a2016-04-24 19:31:03 +0800423 _shopfloor_url_args_cmd_arg,
424 _station_ip_cmd_arg,
425 _station_port_cmd_arg,
426 _wipe_finish_token_cmd_arg)
Shun-Hsing Oucdc64e12015-01-14 22:07:33 +0800427def WipeInPlace(options):
428 """Start factory wipe directly without reboot."""
429
Wei-Han Chenbe1355a2016-04-24 19:31:03 +0800430 GetGooftool(options).WipeInPlace(options.fast,
Wei-Han Chenbe1355a2016-04-24 19:31:03 +0800431 options.shopfloor_url,
432 options.station_ip,
433 options.station_port,
434 options.wipe_finish_token)
Mattias Nisslercca761b2015-04-15 21:53:04 +0200435
Wei-Han Chen7dc6d132016-04-06 11:11:53 +0800436@Command('wipe_init',
Wei-Han Chen0a3320e2016-04-23 01:32:07 +0800437 CmdArg('--wipe_args', help='arguments for clobber-state'),
438 CmdArg('--state_dev', help='path to stateful partition device'),
439 CmdArg('--root_disk', help='path to primary device'),
440 CmdArg('--old_root', help='path to old root'),
Wei-Han Chen0a3320e2016-04-23 01:32:07 +0800441 _shopfloor_url_args_cmd_arg,
Wei-Han Chenbe1355a2016-04-24 19:31:03 +0800442 _release_rootfs_cmd_arg,
443 _station_ip_cmd_arg,
444 _station_port_cmd_arg,
445 _wipe_finish_token_cmd_arg)
Wei-Han Chen7dc6d132016-04-06 11:11:53 +0800446def WipeInit(options):
Wei-Han Chen0a3320e2016-04-23 01:32:07 +0800447 GetGooftool(options).WipeInit(options.wipe_args,
Wei-Han Chen0a3320e2016-04-23 01:32:07 +0800448 options.shopfloor_url,
449 options.state_dev,
450 options.release_rootfs,
451 options.root_disk,
Wei-Han Chenbe1355a2016-04-24 19:31:03 +0800452 options.old_root,
453 options.station_ip,
454 options.station_port,
455 options.wipe_finish_token)
Wei-Han Chen7dc6d132016-04-06 11:11:53 +0800456
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800457@Command('verify',
Hung-Te Lin6d827542012-07-19 11:50:41 +0800458 CmdArg('--no_write_protect', action='store_true',
459 help='Do not check write protection switch state.'),
Tammo Spalink95c43732012-07-25 15:57:14 -0700460 _hwid_status_list_cmd_arg,
Jon Salzce124fb2012-10-02 17:42:03 +0800461 _hwdb_path_cmd_arg,
Yong Hong5408f652017-07-11 19:20:25 +0800462 _project_cmd_arg,
Jon Salzce124fb2012-10-02 17:42:03 +0800463 _probe_results_cmd_arg,
Cheng-Yi Chiang406ad912013-11-14 16:51:33 +0800464 _hwid_cmd_arg,
Yong Hong68a0e0d2017-12-20 19:06:54 +0800465 _hwid_run_vpd_cmd_arg,
466 _hwid_vpd_data_file_cmd_arg,
Chih-Yu Huang714dbc42015-07-21 16:42:16 +0800467 _rma_mode_cmd_arg,
bowgotsai13820f42015-09-10 23:18:04 +0800468 _cros_core_cmd_arg,
Yilun Lin599833f2017-12-22 14:07:46 +0800469 _chromebox_cmd_arg,
Yilun Lin34f54802017-11-16 11:58:25 +0800470 _ec_pubkey_path_cmd_arg,
471 _ec_pubkey_hash_cmd_arg,
Hung-Te Lincdb96522016-04-15 16:51:10 +0800472 _release_rootfs_cmd_arg,
473 _firmware_path_cmd_arg,
Ting Shen18a06382016-08-30 16:18:21 +0800474 _enforced_release_channels_cmd_arg,
Wei-Han Chen60c5d332017-01-05 17:15:10 +0800475 _waive_list_cmd_arg,
476 _skip_list_cmd_arg)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800477def Verify(options):
478 """Verifies if whole factory process is ready for finalization.
479
480 This routine performs all the necessary checks to make sure the
481 device is ready to be finalized, but does not modify state. These
482 checks include dev switch, firmware write protection switch, hwid,
483 system time, keys, and root file system.
484 """
Andy Cheng7a76cb82012-11-19 18:08:19 +0800485
Hung-Te Lin6d827542012-07-19 11:50:41 +0800486 if not options.no_write_protect:
Ricky Lianga70a1202013-03-15 15:03:17 +0800487 VerifyWPSwitch(options)
Hung-Te Lindd708d42014-07-11 17:05:01 +0800488 VerifyManagementEngineLocked(options)
Ricky Lianga70a1202013-03-15 15:03:17 +0800489 VerifyDevSwitch(options)
Ting Shen129fa6f2016-09-02 12:22:24 +0800490 VerifyHWID(options)
Ricky Lianga70a1202013-03-15 15:03:17 +0800491 VerifySystemTime(options)
Yilun Lin599833f2017-12-22 14:07:46 +0800492 if options.chromebox:
493 VerifyECKey(options)
Ricky Lianga70a1202013-03-15 15:03:17 +0800494 VerifyKeys(options)
495 VerifyRootFs(options)
Cheng-Yi Chiang676b5292013-06-18 12:05:33 +0800496 VerifyTPM(options)
Hung-Te Lin53c49402017-07-26 13:10:58 +0800497 VerifyVPD(options)
bowgotsai529139c2015-05-30 01:39:49 +0800498 VerifyReleaseChannel(options)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800499
Hung-Te Lin56b18402015-01-16 14:52:30 +0800500
Jon Salzfe9036f2014-01-16 14:11:23 +0800501@Command('untar_stateful_files')
Hung-Te Lin388bce22014-06-03 19:56:40 +0800502def UntarStatefulFiles(unused_options):
Jon Salzfe9036f2014-01-16 14:11:23 +0800503 """Untars stateful files from stateful_files.tar.xz on stateful partition.
504
505 If that file does not exist (which should only be R30 and earlier),
506 this is a no-op.
507 """
Hung-Te Lin2333f3f2016-08-24 17:56:48 +0800508 # Path to stateful partition on device.
509 device_stateful_path = '/mnt/stateful_partition'
510 tar_file = os.path.join(device_stateful_path, 'stateful_files.tar.xz')
Jon Salzfe9036f2014-01-16 14:11:23 +0800511 if os.path.exists(tar_file):
Hung-Te Lin2333f3f2016-08-24 17:56:48 +0800512 Spawn(['tar', 'xf', tar_file], cwd=device_stateful_path,
Jon Salzfe9036f2014-01-16 14:11:23 +0800513 log=True, check_call=True)
514 else:
515 logging.warning('No stateful files at %s', tar_file)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800516
Jon Salz40b9f822014-07-25 16:39:55 +0800517
518@Command('log_source_hashes')
Peter Shihfdf17682017-05-26 11:38:39 +0800519def LogSourceHashes(options):
Jon Salz40b9f822014-07-25 16:39:55 +0800520 """Logs hashes of source files in the factory toolkit."""
Peter Shihfdf17682017-05-26 11:38:39 +0800521 del options # Unused.
Jon Salze60307f2014-08-05 16:20:00 +0800522 # WARNING: The following line is necessary to validate the integrity
523 # of the factory software. Do not remove or modify it.
524 #
525 # 警告:此行会验证工厂软件的完整性,禁止删除或修改。
Wei-Han Chena5c01a02016-04-23 19:27:19 +0800526 factory_par = sys_utils.GetRunningFactoryPythonArchivePath()
527 if factory_par:
528 event_log.Log(
529 'source_hashes',
530 **file_utils.HashPythonArchive(factory_par))
531 else:
532 event_log.Log(
533 'source_hashes',
Peter Shihad166772017-05-31 11:36:17 +0800534 **file_utils.HashSourceTree(os.path.join(paths.FACTORY_DIR, 'py')))
Jon Salz40b9f822014-07-25 16:39:55 +0800535
536
Tammo Spalink86a61c62012-05-25 15:10:35 +0800537@Command('log_system_details')
Peter Shihfdf17682017-05-26 11:38:39 +0800538def LogSystemDetails(options):
Tammo Spalink86a61c62012-05-25 15:10:35 +0800539 """Write miscellaneous system details to the event log."""
Andy Cheng7a76cb82012-11-19 18:08:19 +0800540
Ricky Liang43b879b2014-02-24 11:36:55 +0800541 event_log.Log('system_details', **GetGooftool(options).GetSystemDetails())
Tammo Spalink86a61c62012-05-25 15:10:35 +0800542
543
Jon Salza88b83b2013-05-27 20:00:35 +0800544def CreateReportArchiveBlob(*args, **kwargs):
545 """Creates a report archive and returns it as a blob.
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800546
Jon Salza88b83b2013-05-27 20:00:35 +0800547 Args:
548 See CreateReportArchive.
Andy Cheng7a76cb82012-11-19 18:08:19 +0800549
Jon Salza88b83b2013-05-27 20:00:35 +0800550 Returns:
551 An xmlrpclib.Binary object containing a .tar.xz file.
552 """
Wei-Han Chen47416612016-09-14 17:41:52 +0800553 report_archive = CreateReportArchive(*args, **kwargs)
554 try:
You-Cheng Syuf0f4be12017-12-05 16:33:53 +0800555 return xmlrpclib.Binary(file_utils.ReadFile(report_archive))
Wei-Han Chen47416612016-09-14 17:41:52 +0800556 finally:
557 os.unlink(report_archive)
Jon Salza88b83b2013-05-27 20:00:35 +0800558
559
560def CreateReportArchive(device_sn=None, add_file=None):
561 """Creates a report archive in a temporary directory.
562
563 Args:
564 device_sn: The device serial number (optional).
565 add_file: A list of files to add (optional).
566
567 Returns:
568 Path to the archive.
569 """
Hung-Te Lin6bd16472012-06-20 16:26:47 +0800570 def NormalizeAsFileName(token):
571 return re.sub(r'\W+', '', token).strip()
Jon Salza88b83b2013-05-27 20:00:35 +0800572
573 target_name = '%s%s.tar.xz' % (
574 time.strftime('%Y%m%dT%H%M%SZ',
575 time.gmtime()),
Hung-Te Lin56b18402015-01-16 14:52:30 +0800576 ('' if device_sn is None else
577 '_' + NormalizeAsFileName(device_sn)))
Tammo Spalink86a61c62012-05-25 15:10:35 +0800578 target_path = os.path.join(gettempdir(), target_name)
Jon Salza88b83b2013-05-27 20:00:35 +0800579
Tammo Spalink86a61c62012-05-25 15:10:35 +0800580 # Intentionally ignoring dotfiles in EVENT_LOG_DIR.
Andy Cheng0465d132013-03-20 12:12:06 +0800581 tar_cmd = 'cd %s ; tar cJf %s *' % (event_log.EVENT_LOG_DIR, target_path)
Peter Shihb4e49352017-05-25 17:35:11 +0800582 tar_cmd += ' %s' % paths.FACTORY_LOG_PATH
Jon Salza88b83b2013-05-27 20:00:35 +0800583 if add_file:
584 for f in add_file:
Jon Salz65266432012-07-30 19:02:49 +0800585 # Require absolute paths since the tar command may change the
586 # directory.
587 if not f.startswith('/'):
588 raise Error('Not an absolute path: %s' % f)
589 if not os.path.exists(f):
590 raise Error('File does not exist: %s' % f)
Wei-Han Chen4b755022017-01-04 10:51:52 +0800591 tar_cmd += ' %s' % pipes.quote(f)
Tammo Spalink86a61c62012-05-25 15:10:35 +0800592 cmd_result = Shell(tar_cmd)
Jon Salzff88c022012-11-03 12:19:58 +0800593
594 if ((cmd_result.status == 1) and
595 all((x == '' or
596 'file changed as we read it' in x or
597 "Removing leading `/' from member names" in x)
598 for x in cmd_result.stderr.split('\n'))):
599 # That's OK. Make sure it's valid though.
Vic Yang85199e72013-01-28 14:33:11 +0800600 Spawn(['tar', 'tfJ', target_path], check_call=True, log=True,
Jon Salzff88c022012-11-03 12:19:58 +0800601 ignore_stdout=True)
602 elif not cmd_result.success:
Tammo Spalink86a61c62012-05-25 15:10:35 +0800603 raise Error('unable to tar event logs, cmd %r failed, stderr: %r' %
604 (tar_cmd, cmd_result.stderr))
Jon Salzff88c022012-11-03 12:19:58 +0800605
Jon Salza88b83b2013-05-27 20:00:35 +0800606 return target_path
607
608_upload_method_cmd_arg = CmdArg(
609 '--upload_method', metavar='METHOD:PARAM',
610 help=('How to perform the upload. METHOD should be one of '
611 '{ftp, shopfloor, ftps, cpfe}.'))
612_add_file_cmd_arg = CmdArg(
613 '--add_file', metavar='FILE', action='append',
614 help='Extra file to include in report (must be an absolute path)')
615
Hung-Te Lin56b18402015-01-16 14:52:30 +0800616
Jon Salza88b83b2013-05-27 20:00:35 +0800617@Command('upload_report',
618 _upload_method_cmd_arg,
619 _add_file_cmd_arg)
620def UploadReport(options):
621 """Create a report containing key device details."""
Yong Hong863d3262017-10-30 16:23:34 +0800622 ro_vpd = sys_utils.VPDTool().GetAllData(
623 partition=sys_utils.VPDTool.RO_PARTITION)
Jon Salza88b83b2013-05-27 20:00:35 +0800624 device_sn = ro_vpd.get('serial_number', None)
625 if device_sn is None:
626 logging.warning('RO_VPD missing device serial number')
Chun-Ta Lin53cbbd52016-06-08 21:42:19 +0800627 device_sn = 'MISSING_SN_' + time_utils.TimedUUID()
Jon Salza88b83b2013-05-27 20:00:35 +0800628 target_path = CreateReportArchive(device_sn)
629
Tammo Spalink86a61c62012-05-25 15:10:35 +0800630 if options.upload_method is None or options.upload_method == 'none':
631 logging.warning('REPORT UPLOAD SKIPPED (report left at %s)', target_path)
632 return
633 method, param = options.upload_method.split(':', 1)
634 if method == 'shopfloor':
You-Cheng Syuf0f4be12017-12-05 16:33:53 +0800635 report_upload.ShopFloorUpload(
636 target_path, param,
637 'GRT' if options.command_name == 'finalize' else None)
Tammo Spalink86a61c62012-05-25 15:10:35 +0800638 elif method == 'ftp':
Jay Kim360c1dd2012-06-25 10:58:11 -0700639 report_upload.FtpUpload(target_path, 'ftp:' + param)
Tammo Spalink86a61c62012-05-25 15:10:35 +0800640 elif method == 'ftps':
641 report_upload.CurlUrlUpload(target_path, '--ftp-ssl-reqd ftp:%s' % param)
642 elif method == 'cpfe':
Shawn Nematbakhsh3404a092013-01-28 16:49:09 -0800643 report_upload.CpfeUpload(target_path, pipes.quote(param))
Tammo Spalink86a61c62012-05-25 15:10:35 +0800644 else:
Peter Shihbf6f22b2018-02-26 14:05:28 +0800645 raise Error('unknown report upload method %r' % method)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800646
647
648@Command('finalize',
Hung-Te Lin6d827542012-07-19 11:50:41 +0800649 CmdArg('--no_write_protect', action='store_true',
650 help='Do not enable firmware write protection.'),
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800651 CmdArg('--fast', action='store_true',
652 help='use non-secure but faster wipe method.'),
Shun-Hsing Oudb407d62015-11-11 11:03:59 +0800653 _shopfloor_url_args_cmd_arg,
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800654 _hwdb_path_cmd_arg,
Tammo Spalink95c43732012-07-25 15:57:14 -0700655 _hwid_status_list_cmd_arg,
Jon Salz65266432012-07-30 19:02:49 +0800656 _upload_method_cmd_arg,
Jon Salzce124fb2012-10-02 17:42:03 +0800657 _add_file_cmd_arg,
658 _probe_results_cmd_arg,
Cheng-Yi Chiang406ad912013-11-14 16:51:33 +0800659 _hwid_cmd_arg,
Yong Hong68a0e0d2017-12-20 19:06:54 +0800660 _hwid_run_vpd_cmd_arg,
661 _hwid_vpd_data_file_cmd_arg,
Chih-Yu Huang714dbc42015-07-21 16:42:16 +0800662 _rma_mode_cmd_arg,
bowgotsai13820f42015-09-10 23:18:04 +0800663 _cros_core_cmd_arg,
Yilun Lin599833f2017-12-22 14:07:46 +0800664 _chromebox_cmd_arg,
Yilun Lin34f54802017-11-16 11:58:25 +0800665 _ec_pubkey_path_cmd_arg,
666 _ec_pubkey_hash_cmd_arg,
Hung-Te Lincdb96522016-04-15 16:51:10 +0800667 _release_rootfs_cmd_arg,
668 _firmware_path_cmd_arg,
Wei-Han Chenbe1355a2016-04-24 19:31:03 +0800669 _enforced_release_channels_cmd_arg,
670 _station_ip_cmd_arg,
671 _station_port_cmd_arg,
Ting Shen18a06382016-08-30 16:18:21 +0800672 _wipe_finish_token_cmd_arg,
Wei-Han Cheneb4f9a22018-03-09 14:52:23 +0800673 _rlz_embargo_end_date_offset_cmd_arg,
Wei-Han Chen60c5d332017-01-05 17:15:10 +0800674 _waive_list_cmd_arg,
675 _skip_list_cmd_arg)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800676def Finalize(options):
677 """Verify system readiness and trigger transition into release state.
678
Jon Salzaa3a30e2013-05-15 15:56:28 +0800679 This routine does the following:
680 - Verifies system state (see verify command)
Jon Salzfe9036f2014-01-16 14:11:23 +0800681 - Untars stateful_files.tar.xz, if it exists, in the stateful partition, to
682 initialize files such as the CRX cache
Jon Salzaa3a30e2013-05-15 15:56:28 +0800683 - Modifies firmware bitmaps to match locale
684 - Clears all factory-friendly flags from the GBB
685 - Removes factory-specific entries from RW_VPD (factory.*)
686 - Enables firmware write protection (cannot rollback after this)
687 - Uploads system logs & reports
Earl Ou51182222016-09-09 12:16:48 +0800688 - Wipes the testing kernel, rootfs, and stateful partition
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800689 """
Wei-Han Cheneb4f9a22018-03-09 14:52:23 +0800690 if not options.rma_mode:
691 # Write VPD values related to RLZ ping into VPD.
692 GetGooftool(options).WriteVPDForRLZPing(options.embargo_offset)
Shen-En Shih3e079b22017-09-11 05:43:09 -0700693 Cr50SetBoardId(options)
Marco Chen44a666d2018-07-13 21:01:50 +0800694 Cr50DisableFactoryMode(options)
Marco Chen9d0631c2018-08-31 10:52:44 +0800695 Verify(options)
Jon Salz40b9f822014-07-25 16:39:55 +0800696 LogSourceHashes(options)
Jon Salzfe9036f2014-01-16 14:11:23 +0800697 UntarStatefulFiles(options)
Chih-Yu Huang714dbc42015-07-21 16:42:16 +0800698 if options.cros_core:
699 logging.info('SetFirmwareBitmapLocale is skipped for ChromeOS Core device.')
700 else:
701 SetFirmwareBitmapLocale(options)
Jon Salzaa3a30e2013-05-15 15:56:28 +0800702 ClearFactoryVPDEntries(options)
Mattias Nisslercca761b2015-04-15 21:53:04 +0200703 GenerateStableDeviceSecret(options)
Shen-En Shih3e079b22017-09-11 05:43:09 -0700704 ClearGBBFlags(options)
Hung-Te Lin6d827542012-07-19 11:50:41 +0800705 if options.no_write_protect:
706 logging.warn('WARNING: Firmware Write Protection is SKIPPED.')
Andy Cheng0465d132013-03-20 12:12:06 +0800707 event_log.Log('wp', fw='both', status='skipped')
Hung-Te Lin6d827542012-07-19 11:50:41 +0800708 else:
Wei-Han Chenba21f512016-10-14 18:52:33 +0800709 EnableFwWp(options)
Jon Salza0f58e02012-05-29 19:33:39 +0800710 LogSystemDetails(options)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800711 UploadReport(options)
Earl Ou51182222016-09-09 12:16:48 +0800712
713 event_log.Log('wipe_in_place')
714 wipe_args = []
Earl Ou51182222016-09-09 12:16:48 +0800715 if options.shopfloor_url:
716 wipe_args += ['--shopfloor_url', options.shopfloor_url]
717 if options.fast:
718 wipe_args += ['--fast']
719 if options.station_ip:
720 wipe_args += ['--station_ip', options.station_ip]
721 if options.station_port:
722 wipe_args += ['--station_port', options.station_port]
723 if options.wipe_finish_token:
724 wipe_args += ['--wipe_finish_token', options.wipe_finish_token]
725 ExecFactoryPar('gooftool', 'wipe_in_place', *wipe_args)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800726
727
Ting Shen129fa6f2016-09-02 12:22:24 +0800728@Command('verify_hwid',
729 _probe_results_cmd_arg,
730 _hwdb_path_cmd_arg,
731 _hwid_cmd_arg,
Yong Hong68a0e0d2017-12-20 19:06:54 +0800732 _hwid_run_vpd_cmd_arg,
733 _hwid_vpd_data_file_cmd_arg,
Ting Shen129fa6f2016-09-02 12:22:24 +0800734 _rma_mode_cmd_arg)
735def VerifyHWID(options):
Ricky Liangc662be32013-12-24 11:50:23 +0800736 """A simple wrapper that calls out to HWID utils to verify version 3 HWID.
Ricky Liang53390232013-03-08 15:37:57 +0800737
Ricky Liangc662be32013-12-24 11:50:23 +0800738 This is mainly for Gooftool to verify v3 HWID during finalize. For testing
739 and development purposes, please use `hwid` command.
Ricky Liang53390232013-03-08 15:37:57 +0800740 """
Yong Hongada8e0e2018-01-04 16:36:21 +0800741 database = GetGooftool(options).db
Yong Hong68a0e0d2017-12-20 19:06:54 +0800742
Yong Hongada8e0e2018-01-04 16:36:21 +0800743 encoded_string = options.hwid or GetGooftool(options).ReadHWID()
744
745 probed_results = hwid_utils.GetProbedResults(infile=options.probe_results)
Yong Hong2c39bf22018-01-24 22:24:11 +0800746 device_info = hwid_utils.GetDeviceInfo()
Yong Hongada8e0e2018-01-04 16:36:21 +0800747 vpd = hwid_utils.GetVPDData(run_vpd=options.hwid_run_vpd,
748 infile=options.hwid_vpd_data_file)
Ricky Liang53390232013-03-08 15:37:57 +0800749
Hung-Te Lin11052952015-03-18 13:48:59 +0800750 event_log.Log('probed_results', probed_results=FilterDict(probed_results))
Yong Hong68a0e0d2017-12-20 19:06:54 +0800751 event_log.Log('vpd', vpd=FilterDict(vpd) if vpd is None else None)
Ricky Liang53390232013-03-08 15:37:57 +0800752
Yong Hong2c39bf22018-01-24 22:24:11 +0800753 hwid_utils.VerifyHWID(database, encoded_string, probed_results,
754 device_info, vpd, options.rma_mode)
Ricky Liang53390232013-03-08 15:37:57 +0800755
Ricky Liangc662be32013-12-24 11:50:23 +0800756 event_log.Log('verified_hwid', hwid=encoded_string)
Ricky Liang53390232013-03-08 15:37:57 +0800757
758
henryhsu44d793a2013-07-20 00:07:38 +0800759@Command('get_firmware_hash',
Marco Chence70b132018-05-03 23:43:39 +0800760 CmdArg('--file', required=True, metavar='FILE', help='Firmware File.'))
henryhsu44d793a2013-07-20 00:07:38 +0800761def GetFirmwareHash(options):
henryhsuf6f835c2013-07-20 20:49:25 +0800762 """Get firmware hash from a file"""
henryhsu44d793a2013-07-20 00:07:38 +0800763 if os.path.exists(options.file):
Cheng-Han Yang2c668ae2018-04-18 22:31:07 +0800764 value_dict = chromeos_firmware.CalculateFirmwareHashes(options.file)
765 for key, value in value_dict.iteritems():
766 print ' %s: %s' % (key, value)
henryhsu44d793a2013-07-20 00:07:38 +0800767 else:
768 raise Error('File does not exist: %s' % options.file)
769
henryhsuf6f835c2013-07-20 20:49:25 +0800770
Peter Shihfdf17682017-05-26 11:38:39 +0800771def main():
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800772 """Run sub-command specified by the command line args."""
Andy Cheng7a76cb82012-11-19 18:08:19 +0800773
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800774 options = ParseCmdline(
Ting Shen129fa6f2016-09-02 12:22:24 +0800775 'Perform Google required factory tests.',
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800776 CmdArg('-l', '--log', metavar='PATH',
777 help='Write logs to this file.'),
Jon Salza4bea382012-10-29 13:00:34 +0800778 CmdArg('--suppress-event-logs', action='store_true',
779 help='Suppress event logging.'),
Wei-Han Chenaff56232016-04-16 09:17:59 +0800780 CmdArg('--phase', default=None,
781 help=('override phase for phase checking (defaults to the current '
782 'as returned by the "factory phase" command)')),
Tammo Spalink8fab5312012-05-28 18:33:30 +0800783 verbosity_cmd_arg)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800784 SetupLogging(options.verbosity, options.log)
Andy Cheng0465d132013-03-20 12:12:06 +0800785 event_log.SetGlobalLoggerDefaultPrefix('gooftool')
786 event_log.GetGlobalLogger().suppress = options.suppress_event_logs
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800787 logging.debug('gooftool options: %s', repr(options))
Wei-Han Chenaff56232016-04-16 09:17:59 +0800788
789 phase.OverridePhase(options.phase)
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800790 try:
791 logging.debug('GOOFTOOL command %r', options.command_name)
792 options.command(options)
793 logging.info('GOOFTOOL command %r SUCCESS', options.command_name)
Peter Shih6674ecf2018-03-29 14:04:57 +0800794 except Error as e:
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800795 logging.exception(e)
796 sys.exit('GOOFTOOL command %r ERROR: %s' % (options.command_name, e))
Peter Shih6674ecf2018-03-29 14:04:57 +0800797 except Exception as e:
Tammo Spalink9a96b8a2012-04-03 11:10:41 +0800798 logging.exception(e)
799 sys.exit('UNCAUGHT RUNTIME EXCEPTION %s' % e)
800
801
802if __name__ == '__main__':
Peter Shihfdf17682017-05-26 11:38:39 +0800803 main()