Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 1 | #!/usr/bin/python |
| 2 | # Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
| 5 | |
| 6 | """Script that resets your Chrome GIT checkout.""" |
| 7 | |
| 8 | import functools |
| 9 | import logging |
| 10 | import optparse |
| 11 | import os |
| 12 | import time |
| 13 | import urlparse |
| 14 | |
| 15 | from chromite.lib import cros_build_lib |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 16 | from chromite.lib import commandline |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 17 | from chromite.lib import osutils |
| 18 | from chromite.lib import remote_access as remote |
| 19 | from chromite.lib import sudo |
| 20 | |
| 21 | |
| 22 | GS_HTTP = 'https://commondatastorage.googleapis.com' |
| 23 | GSUTIL_URL = '%s/chromeos-public/gsutil.tar.gz' % GS_HTTP |
| 24 | GS_RETRIES = 5 |
| 25 | KERNEL_A_PARTITION = 2 |
| 26 | KERNEL_B_PARTITION = 4 |
| 27 | |
| 28 | KILL_PROC_MAX_WAIT = 10 |
| 29 | POST_KILL_WAIT = 2 |
| 30 | |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 31 | MOUNT_RW_COMMAND = 'mount -o remount,rw /' |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 32 | |
| 33 | # Convenience RunCommand methods |
| 34 | DebugRunCommand = functools.partial( |
| 35 | cros_build_lib.RunCommand, debug_level=logging.DEBUG) |
| 36 | |
| 37 | DebugRunCommandCaptureOutput = functools.partial( |
| 38 | cros_build_lib.RunCommandCaptureOutput, debug_level=logging.DEBUG) |
| 39 | |
| 40 | DebugSudoRunCommand = functools.partial( |
| 41 | cros_build_lib.SudoRunCommand, debug_level=logging.DEBUG) |
| 42 | |
| 43 | |
| 44 | def _TestGSLs(gs_bin): |
| 45 | """Quick test of gsutil functionality.""" |
| 46 | result = DebugRunCommandCaptureOutput([gs_bin, 'ls'], error_code_ok=True) |
| 47 | return not result.returncode |
| 48 | |
| 49 | |
| 50 | def _SetupBotoConfig(gs_bin): |
| 51 | """Make sure we can access protected bits in GS.""" |
| 52 | boto_path = os.path.expanduser('~/.boto') |
| 53 | if os.path.isfile(boto_path) or _TestGSLs(gs_bin): |
| 54 | return |
| 55 | |
| 56 | logging.info('Configuring gsutil. Please use your @google.com account.') |
| 57 | try: |
| 58 | cros_build_lib.RunCommand([gs_bin, 'config'], print_cmd=False) |
| 59 | finally: |
| 60 | if os.path.exists(boto_path) and not os.path.getsize(boto_path): |
| 61 | os.remove(boto_path) |
| 62 | |
| 63 | |
| 64 | def _UrlBaseName(url): |
| 65 | """Return the last component of the URL.""" |
| 66 | return url.rstrip('/').rpartition('/')[-1] |
| 67 | |
| 68 | |
| 69 | def _ExtractChrome(src, dest): |
| 70 | osutils.SafeMakedirs(dest) |
| 71 | # Preserve permissions (-p). This is default when running tar with 'sudo'. |
| 72 | DebugSudoRunCommand(['tar', '--checkpoint', '-xf', src], |
| 73 | cwd=dest) |
| 74 | |
| 75 | |
| 76 | class DeployChrome(object): |
| 77 | """Wraps the core deployment functionality.""" |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 78 | def __init__(self, options, tempdir, remote_access=None): |
| 79 | """Initialize the class. |
| 80 | |
| 81 | Arguments: |
| 82 | options: Optparse result structure. |
| 83 | tempdir: Scratch space for the class. Caller has responsibility to clean |
| 84 | it up. |
| 85 | remote_access: For test purposes. Supply the RemoteAccess instance to |
| 86 | use. Used for deploy_chrome_unittest.py to supply a mock. |
| 87 | """ |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 88 | self.tempdir = tempdir |
| 89 | self.options = options |
| 90 | self.chrome_dir = os.path.join(tempdir, 'chrome') |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 91 | self.host = remote_access |
| 92 | if self.host is None: |
| 93 | self.host = remote.RemoteAccess(options.to, tempdir, port=options.port) |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 94 | self.start_ui_needed = False |
| 95 | |
| 96 | def _FetchChrome(self): |
| 97 | """Get the chrome prebuilt tarball from GS. |
| 98 | |
| 99 | Returns: Path to the fetched chrome tarball. |
| 100 | """ |
| 101 | logging.info('Fetching gsutil.') |
| 102 | gsutil_tar = os.path.join(self.tempdir, 'gsutil.tar.gz') |
| 103 | cros_build_lib.RunCurl([GSUTIL_URL, '-o', gsutil_tar], |
| 104 | debug_level=logging.DEBUG) |
| 105 | DebugRunCommand(['tar', '-xzf', gsutil_tar], cwd=self.tempdir) |
| 106 | gs_bin = os.path.join(self.tempdir, 'gsutil', 'gsutil') |
| 107 | _SetupBotoConfig(gs_bin) |
| 108 | cmd = [gs_bin, 'ls', self.options.gs_path] |
| 109 | files = DebugRunCommandCaptureOutput(cmd).output.splitlines() |
| 110 | files = [found for found in files if |
| 111 | _UrlBaseName(found).startswith('chromeos-chrome-')] |
| 112 | if not files: |
| 113 | raise Exception('No chrome package found at %s' % self.options.gs_path) |
| 114 | elif len(files) > 1: |
| 115 | # - Users should provide us with a direct link to either a stripped or |
| 116 | # unstripped chrome package. |
| 117 | # - In the case of being provided with an archive directory, where both |
| 118 | # stripped and unstripped chrome available, use the stripped chrome |
| 119 | # package (comes on top after sort). |
| 120 | # - Stripped chrome pkg is chromeos-chrome-<version>.tar.gz |
| 121 | # - Unstripped chrome pkg is chromeos-chrome-<version>-unstripped.tar.gz. |
| 122 | files.sort() |
| 123 | cros_build_lib.logger.warning('Multiple chrome packages found. Using %s', |
| 124 | files[0]) |
| 125 | |
| 126 | filename = _UrlBaseName(files[0]) |
| 127 | logging.info('Fetching %s.', filename) |
| 128 | cros_build_lib.RunCommand([gs_bin, 'cp', files[0], self.tempdir], |
| 129 | print_cmd=False) |
| 130 | chrome_path = os.path.join(self.tempdir, filename) |
| 131 | assert os.path.exists(chrome_path) |
| 132 | return chrome_path |
| 133 | |
| 134 | def _ChromeFileInUse(self): |
| 135 | result = self.host.RemoteSh('lsof /opt/google/chrome/chrome', |
| 136 | error_code_ok=True) |
| 137 | return result.returncode == 0 |
| 138 | |
| 139 | def _DisableRootfsVerification(self): |
| 140 | if not self.options.force: |
| 141 | logging.error('Detected that the device has rootfs verification enabled.') |
| 142 | logging.info('This script can automatically remove the rootfs ' |
| 143 | 'verification, which requires that it reboot the device.') |
| 144 | logging.info('Make sure the device is in developer mode!') |
| 145 | logging.info('Skip this prompt by specifying --force.') |
| 146 | result = cros_build_lib.YesNoPrompt( |
| 147 | 'no', prompt='Remove roots verification?') |
| 148 | if result == 'no': |
| 149 | cros_build_lib.Die('Need rootfs verification to be disabled. ' |
| 150 | 'Aborting.') |
| 151 | |
| 152 | logging.info('Removing rootfs verification from %s', self.options.to) |
| 153 | # Running in VM's cause make_dev_ssd's firmware sanity checks to fail. |
| 154 | # Use --force to bypass the checks. |
| 155 | cmd = ('/usr/share/vboot/bin/make_dev_ssd.sh --partitions %d ' |
| 156 | '--remove_rootfs_verification --force') |
| 157 | for partition in (KERNEL_A_PARTITION, KERNEL_B_PARTITION): |
| 158 | self.host.RemoteSh(cmd % partition, error_code_ok=True) |
| 159 | |
| 160 | # A reboot in developer mode takes a while (and has delays), so the user |
| 161 | # will have time to read and act on the USB boot instructions below. |
| 162 | logging.info('Please remember to press Ctrl-U if you are booting from USB.') |
| 163 | self.host.RemoteReboot() |
| 164 | |
| 165 | def _CheckRootfsWriteable(self): |
| 166 | # /proc/mounts is in the format: |
| 167 | # <device> <dir> <type> <options> |
| 168 | result = self.host.RemoteSh('cat /proc/mounts') |
| 169 | for line in result.output.splitlines(): |
| 170 | components = line.split() |
| 171 | if components[0] == '/dev/root' and components[1] == '/': |
| 172 | return 'rw' in components[3].split(',') |
| 173 | else: |
| 174 | raise Exception('Internal error - rootfs mount not found!') |
| 175 | |
| 176 | def _CheckUiJobStarted(self): |
| 177 | # status output is in the format: |
| 178 | # <job_name> <status> ['process' <pid>]. |
| 179 | # <status> is in the format <goal>/<state>. |
| 180 | result = self.host.RemoteSh('status ui') |
| 181 | return result.output.split()[1].split('/')[0] == 'start' |
| 182 | |
| 183 | def _KillProcsIfNeeded(self): |
| 184 | if self._CheckUiJobStarted(): |
| 185 | logging.info('Shutting down Chrome.') |
| 186 | self.start_ui_needed = True |
| 187 | self.host.RemoteSh('stop ui') |
| 188 | |
| 189 | # Developers sometimes run session_manager manually, in which case we'll |
| 190 | # need to help shut the chrome processes down. |
| 191 | try: |
| 192 | with cros_build_lib.SubCommandTimeout(KILL_PROC_MAX_WAIT): |
| 193 | while self._ChromeFileInUse(): |
| 194 | logging.warning('The chrome binary on the device is in use.') |
| 195 | logging.warning('Killing chrome and session_manager processes...\n') |
| 196 | |
| 197 | self.host.RemoteSh("pkill 'chrome|session_manager'", |
| 198 | error_code_ok=True) |
| 199 | # Wait for processes to actually terminate |
| 200 | time.sleep(POST_KILL_WAIT) |
| 201 | logging.info('Rechecking the chrome binary...') |
| 202 | except cros_build_lib.TimeoutError: |
| 203 | cros_build_lib.Die('Could not kill processes after %s seconds. Please ' |
| 204 | 'exit any running chrome processes and try again.') |
| 205 | |
| 206 | def _PrepareTarget(self): |
| 207 | # Mount root partition as read/write |
| 208 | if not self._CheckRootfsWriteable(): |
| 209 | logging.info('Mounting rootfs as writeable...') |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 210 | result = self.host.RemoteSh(MOUNT_RW_COMMAND, error_code_ok=True) |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 211 | if result.returncode: |
| 212 | self._DisableRootfsVerification() |
| 213 | logging.info('Trying again to mount rootfs as writeable...') |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 214 | self.host.RemoteSh(MOUNT_RW_COMMAND) |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 215 | |
| 216 | if not self._CheckRootfsWriteable(): |
| 217 | cros_build_lib.Die('Root partition still read-only') |
| 218 | |
| 219 | # This is needed because we're doing an 'rsync --inplace' of Chrome, but |
| 220 | # makes sense to have even when going the sshfs route. |
| 221 | self._KillProcsIfNeeded() |
| 222 | |
| 223 | def _Deploy(self): |
| 224 | logging.info('Copying Chrome to device.') |
| 225 | # Show the output (status) for this command. |
| 226 | self.host.Rsync('%s/' % os.path.abspath(self.chrome_dir), '/', inplace=True, |
| 227 | debug_level=logging.INFO) |
| 228 | if self.start_ui_needed: |
| 229 | self.host.RemoteSh('start ui') |
| 230 | |
| 231 | def Perform(self): |
| 232 | try: |
| 233 | logging.info('Testing connection to the device.') |
| 234 | self.host.RemoteSh('true') |
| 235 | except cros_build_lib.RunCommandError: |
| 236 | logging.error('Error connecting to the test device.') |
| 237 | raise |
| 238 | |
| 239 | pkg_path = self.options.local_path |
| 240 | if self.options.gs_path: |
| 241 | pkg_path = self._FetchChrome() |
| 242 | |
| 243 | logging.info('Extracting %s.', pkg_path) |
| 244 | _ExtractChrome(pkg_path, self.chrome_dir) |
| 245 | |
| 246 | self._PrepareTarget() |
| 247 | self._Deploy() |
| 248 | |
| 249 | |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 250 | def check_gs_path(_option, _opt, value): |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 251 | """Convert passed-in path to gs:// path.""" |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 252 | value = value.rstrip('/') |
| 253 | if value.startswith('gs://'): |
| 254 | return value |
| 255 | |
| 256 | parsed = urlparse.urlparse(value) |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 257 | # pylint: disable=E1101 |
| 258 | path = parsed.path.lstrip('/') |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 259 | |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 260 | if parsed.hostname.startswith('sandbox.google.com'): |
| 261 | # Sandbox paths are 'storage/<bucket>/<path_to_object>', so strip out the |
| 262 | # first component. |
| 263 | storage, _, path = path.partition('/') |
| 264 | assert storage == 'storage', 'GS URL %s not in expected format.' % value |
| 265 | |
| 266 | return 'gs://%s' % path |
| 267 | |
| 268 | |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 269 | class CustomOption(commandline.Option): |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 270 | """Subclass Option class to implement path evaluation.""" |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 271 | TYPES = optparse.Option.TYPES + ('gs_path',) |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 272 | TYPE_CHECKER = optparse.Option.TYPE_CHECKER.copy() |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 273 | TYPE_CHECKER['gs_path'] = check_gs_path |
| 274 | |
| 275 | |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 276 | def _CreateParser(): |
| 277 | """Create our custom parser.""" |
| 278 | usage = 'usage: %prog [--]' |
| 279 | parser = commandline.OptionParser(usage=usage,) |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 280 | |
| 281 | parser.add_option('--force', action='store_true', default=False, |
| 282 | help=('Skip all prompts (i.e., for disabling of rootfs ' |
| 283 | 'verification). This may result in the target ' |
| 284 | 'machine being rebooted.')) |
| 285 | parser.add_option('-g', '--gs-path', type='gs_path', |
| 286 | help=('GS path that contains the chrome to deploy.')) |
| 287 | parser.add_option('-l', '--local-path', type='path', |
| 288 | help='path to local chrome prebuilt package to deploy.') |
| 289 | parser.add_option('-p', '--port', type=int, default=remote.DEFAULT_SSH_PORT, |
| 290 | help=('Port of the target device to connect to.')) |
| 291 | parser.add_option('-t', '--to', |
| 292 | help=('The IP address of the CrOS device to deploy to.')) |
| 293 | parser.add_option('-v', '--verbose', action='store_true', default=False, |
| 294 | help=('Show more debug output.')) |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 295 | return parser |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 296 | |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 297 | |
| 298 | def _ParseCommandLine(argv): |
| 299 | """Parse args, and run environment-independent checks.""" |
| 300 | parser = _CreateParser() |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 301 | (options, args) = parser.parse_args(argv) |
| 302 | |
| 303 | if not options.gs_path and not options.local_path: |
| 304 | parser.error('Need to specify either --gs-path or --local-path') |
| 305 | if options.gs_path and options.local_path: |
| 306 | parser.error('Cannot specify both --gs-path and --local-path') |
| 307 | if not options.to: |
| 308 | parser.error('Need to specify --to') |
| 309 | |
| 310 | return options, args |
| 311 | |
| 312 | |
Ryan Cui | e535b17 | 2012-10-19 18:25:03 -0700 | [diff] [blame^] | 313 | def _PostParseCheck(options, _args): |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 314 | """Perform some usage validation (after we've parsed the arguments |
| 315 | |
| 316 | Args: |
| 317 | options/args: The options/args object returned by optparse |
| 318 | """ |
| 319 | if options.local_path and not os.path.isfile(options.local_path): |
| 320 | cros_build_lib.Die('%s is not a file.', options.local_path) |
| 321 | |
| 322 | |
| 323 | def main(argv): |
| 324 | options, args = _ParseCommandLine(argv) |
| 325 | _PostParseCheck(options, args) |
| 326 | |
| 327 | # Set cros_build_lib debug level to hide RunCommand spew. |
| 328 | if options.verbose: |
| 329 | cros_build_lib.logger.setLevel(logging.DEBUG) |
| 330 | else: |
| 331 | cros_build_lib.logger.setLevel(logging.INFO) |
| 332 | |
David James | 891dccf | 2012-08-20 14:19:54 -0700 | [diff] [blame] | 333 | with sudo.SudoKeepAlive(ttyless_sudo=False): |
Ryan Cui | 3045c5d | 2012-07-13 18:00:33 -0700 | [diff] [blame] | 334 | with osutils.TempDirContextManager(sudo_rm=True) as tempdir: |
| 335 | deploy = DeployChrome(options, tempdir) |
| 336 | deploy.Perform() |