Пример #1
0
 def _check_for_update(self):
     # Asynchronous method call.
     log.info('Enter _check_for_update()')
     self._update = self._api.check_for_update()
     log.info('_check_for_update(): checking lock releasing')
     try:
         self._checking.release()
     except RuntimeError:  # pragma: no udm
         log.info('_check_for_update(): checking lock already released')
     else:
         log.info('_check_for_update(): checking lock released')
     # Do we have an update and can we auto-download it?
     delayed_download = False
     if self._update.is_available:
         settings = Settings()
         auto = settings.get('auto_download')
         log.info('Update available; auto-download: {}', auto)
         if auto in ('1', '2'):
             # XXX When we have access to the download service, we can
             # check if we're on the wifi (auto == '1').
             delayed_download = True
             GLib.timeout_add(50, self._download)
     # We have a timing issue.  We can't lock the downloading lock here,
     # otherwise when _download() starts running in ~50ms it will think a
     # download is already in progress.  But we want to send the UAS signal
     # here and now, *and* indicate whether the download is about to happen.
     # So just lie for now since in ~50ms the download will begin.
     self.UpdateAvailableStatus(self._update.is_available, delayed_download,
                                self._update.version, self._update.size,
                                last_update_date(), self._update.error)
     # Stop GLib from calling this method again.
     return False
Пример #2
0
    def SetSetting(self, key, value):
        """Set a key/value setting.

        Some values are special, e.g. min_battery and auto_downloads.
        Implement these special semantics here.
        """
        self.loop.keepalive()
        if key == 'min_battery':
            try:
                as_int = int(value)
            except ValueError:
                return
            if as_int < 0 or as_int > 100:
                return
        if key == 'auto_download':
            try:
                as_int = int(value)
            except ValueError:
                return
            if as_int not in (0, 1, 2):
                return
        settings = Settings()
        old_value = settings.get(key)
        settings.set(key, value)
        if value != old_value:
            # Send the signal.
            self.SettingChanged(key, value)
Пример #3
0
 def test_creation(self, config):
     self.assertFalse(os.path.exists(config.system.settings_db))
     settings = Settings()
     self.assertTrue(os.path.exists(config.system.settings_db))
     del settings
     # The file still exists.
     self.assertTrue(os.path.exists(config.system.settings_db))
     Settings()
     self.assertTrue(os.path.exists(config.system.settings_db))
Пример #4
0
 def test_delete(self):
     # Keys can be deleted.
     settings = Settings()
     settings.set('moving', 'pictures')
     self.assertEqual(settings.get('moving'), 'pictures')
     settings.delete('moving')
     # The empty string is the default.
     self.assertEqual(settings.get('moving'), '')
Пример #5
0
 def test_always_downloads_gsm_allowed(self, config_d):
     # GSM downloads are allowed when always downloading.
     config = Configuration(config_d)
     Settings(config).set('auto_download', '2')
     get_download_manager().get_files(_http_pathify([
         ('channel.channels_05.json', 'channels.json')
         ]))
     self.assertTrue(self._gsm_set_flag)
     self.assertTrue(self._gsm_get_flag)
Пример #6
0
 def test_wifi_downloads_gsm_disallowed(self, config_d):
     # Obviously GSM downloads are not allowed when downloading
     # automatically on wifi-only.
     config = Configuration(config_d)
     Settings(config).set('auto_download', '1')
     get_download_manager().get_files(_http_pathify([
         ('channel.channels_05.json', 'channels.json')
         ]))
     self.assertFalse(self._gsm_set_flag)
     self.assertFalse(self._gsm_get_flag)
Пример #7
0
 def test_manual_downloads_gsm_allowed(self, config_d):
     # When auto_download is 0, manual downloads are enabled so assuming
     # the user knows what they're doing, GSM downloads are allowed.
     config = Configuration(config_d)
     Settings(config).set('auto_download', '0')
     get_download_manager().get_files(_http_pathify([
         ('channel.channels_05.json', 'channels.json')
         ]))
     self.assertTrue(self._gsm_set_flag)
     self.assertTrue(self._gsm_get_flag)
Пример #8
0
 def UpdateAvailableStatus(self, is_available, downloading,
                           available_version, update_size, last_update_date,
                           error_reason):
     """Signal sent in response to a CheckForUpdate()."""
     # For .Information()'s last_check_date value.
     iso8601_now = datetime.now().replace(microsecond=0).isoformat(sep=' ')
     Settings().set('last_check_date', iso8601_now)
     log.debug('EMIT UpdateAvailableStatus({}, {}, {}, {}, {}, {})',
               is_available, downloading, available_version, update_size,
               last_update_date, repr(error_reason))
     self.loop.keepalive()
Пример #9
0
 def Information(self):
     self.loop.keepalive()
     settings = Settings()
     current_build_number = str(config.build_number)
     version_detail = getattr(config.service, 'version_detail', '')
     response = dict(
         current_build_number=current_build_number,
         device_name=config.device,
         channel_name=config.channel,
         last_update_date=last_update_date(),
         version_detail=version_detail,
         last_check_date=settings.get('last_check_date'),
     )
     if self._update is None:
         response['target_build_number'] = '-1'
         response['target_version_detail'] = ''
     elif not self._update.is_available:
         response['target_build_number'] = current_build_number
         response['target_version_detail'] = version_detail
     else:
         response['target_build_number'] = str(self._update.version)
         response['target_version_detail'] = self._update.version_detail
     return response
Пример #10
0
 def test_iterate(self):
     # Iterate over all keys.
     settings = Settings()
     settings.set('a', 'ant')
     settings.set('b', 'bee')
     settings.set('c', 'cat')
     keyval = list(settings)
     keyval.sort()
     self.assertEqual(keyval, [('a', 'ant'), ('b', 'bee'), ('c', 'cat')])
Пример #11
0
 def test_settings_db_permission_denied(self, config):
     # LP: #1349478 - some tests are run as non-root, meaning they don't
     # have write permission to /var/lib/system-image.  This is where
     # settings.db gets created, but if the process can't create files
     # there, we get a sqlite3 exception.
     db_file = Path(config.system.settings_db)
     self.assertFalse(db_file.exists())
     with ExitStack() as resources:
         resources.enter_context(chmod(str(db_file.parent), 0o555))
         # With no fallback, this will fail.
         with patch('systemimage.settings.Settings._check_fallback',
                    side_effect=RuntimeError):
             self.assertRaises(RuntimeError, Settings)
         # Now, set the XDG cache directory to a temporary directory, allow
         # the fallback to work and try again.
         tmpdir = resources.enter_context(temporary_directory())
         resources.enter_context(
             patch('systemimage.settings.xdg_cache_home', tmpdir))
         settings = Settings()
         settings.set('bar', 'baz')
         self.assertEqual(Settings().get('bar'), 'baz')
     # The settings.db file still doesn't exist because it got
     # created in a different place.
     self.assertFalse(db_file.exists())
Пример #12
0
 def test_persistence(self):
     settings = Settings()
     settings.set('animal', 'cat')
     del settings
     self.assertEqual(Settings().get('animal'), 'cat')
Пример #13
0
 def test_get_set(self):
     settings = Settings()
     settings.set('permanent', 'waves')
     self.assertEqual(settings.get('permanent'), 'waves')
Пример #14
0
 def test_delete_missing(self):
     # Nothing much happens if you ask to delete a missing key.
     settings = Settings()
     settings.delete('missing')
     self.assertEqual(settings.get('missing'), '')
Пример #15
0
 def test_update(self):
     settings = Settings()
     settings.set('animal', 'ant')
     self.assertEqual(settings.get('animal'), 'ant')
     settings.set('animal', 'bee')
     self.assertEqual(settings.get('animal'), 'bee')
Пример #16
0
 def test_get_before_set(self):
     settings = Settings()
     self.assertEqual(settings.get('nothing'), '')
Пример #17
0
 def GetSetting(self, key):
     """Get a setting."""
     self.loop.keepalive()
     return Settings().get(key)
Пример #18
0
 def test_prepopulated(self):
     # Some keys are pre-populated with default values.
     self.assertEqual(Settings().get('auto_download'), '1')
Пример #19
0
def main():
    parser = argparse.ArgumentParser(
        prog='system-image-cli', description='Ubuntu System Image Upgrader')
    parser.add_argument('--version',
                        action='version',
                        version='system-image-cli {}'.format(__version__))
    parser.add_argument('-C',
                        '--config',
                        default=DEFAULT_CONFIG_D,
                        action='store',
                        metavar='DIRECTORY',
                        help="""Use the given configuration directory instead
                                of the default""")
    parser.add_argument('-b',
                        '--build',
                        default=None,
                        action='store',
                        help="""Override the current build number just
                                this once""")
    parser.add_argument('-c',
                        '--channel',
                        default=None,
                        action='store',
                        help="""Override the channel just this once.  Use in
                                combination with `--build 0` to switch
                                channels.""")
    parser.add_argument('-d',
                        '--device',
                        default=None,
                        action='store',
                        help='Override the device name just this once')
    parser.add_argument('-f',
                        '--filter',
                        default=None,
                        action='store',
                        help="""Filter the candidate paths to contain only
                                full updates or only delta updates.  The
                                argument to this option must be either `full`
                                or `delta`""")
    parser.add_argument('-m',
                        '--maximage',
                        default=None,
                        type=int,
                        help="""After the winning upgrade path is selected,
                                remove all images with version numbers greater
                                than the given one.  If no images remain in
                                the winning path, the device is considered
                                up-to-date.""")
    parser.add_argument('-g',
                        '--no-apply',
                        default=False,
                        action='store_true',
                        help="""Download (i.e. "get") all the data files and
                                prepare for updating, but don't actually
                                reboot the device into recovery to apply the
                                update""")
    parser.add_argument('-i',
                        '--info',
                        default=False,
                        action='store_true',
                        help="""Show some information about the current
                                device, including the current build number,
                                device name and channel, then exit""")
    parser.add_argument('-n',
                        '--dry-run',
                        default=False,
                        action='store_true',
                        help="""Calculate and print the upgrade path, but do
                                not download or apply it""")
    parser.add_argument('-v',
                        '--verbose',
                        default=0,
                        action='count',
                        help='Increase verbosity')
    parser.add_argument('--progress',
                        default=[],
                        action='append',
                        help="""Add a progress meter.  Available meters are:
                                dots, logfile, and json.  Multiple --progress
                                options are allowed.""")
    parser.add_argument('-p',
                        '--percentage',
                        default=None,
                        action='store',
                        help="""Override the device's phased percentage value
                                during upgrade candidate calculation.""")
    parser.add_argument('--list-channels',
                        default=False,
                        action='store_true',
                        help="""List all available channels, then exit""")
    parser.add_argument('--factory-reset',
                        default=False,
                        action='store_true',
                        help="""Perform a destructive factory reset and
                                reboot.  WARNING: this will wipe all user data
                                on the device!""")
    parser.add_argument('--production-reset',
                        default=False,
                        action='store_true',
                        help="""Perform a destructive production reset
                                (similar to factory reset) and reboot.
                                WARNING: this will wipe all user data
                                on the device!""")
    parser.add_argument('--switch',
                        default=None,
                        action='store',
                        metavar='CHANNEL',
                        help="""Switch to the given channel.  This is
                                equivalent to `-c CHANNEL -b 0`.""")
    # Settings options.
    parser.add_argument('--show-settings',
                        default=False,
                        action='store_true',
                        help="""Show all settings as key=value pairs,
                                then exit""")
    parser.add_argument('--set',
                        default=[],
                        action='append',
                        metavar='KEY=VAL',
                        help="""Set a key and value in the settings, adding
                                the key if it doesn't yet exist, or overriding
                                its value if the key already exists.  Multiple
                                --set arguments can be given.""")
    parser.add_argument('--get',
                        default=[],
                        action='append',
                        metavar='KEY',
                        help="""Get the value for a key.  If the key does not
                                exist, a default value is returned.  Multiple
                                --get arguments can be given.""")
    parser.add_argument('--del',
                        default=[],
                        action='append',
                        metavar='KEY',
                        dest='delete',
                        help="""Delete the key and its value.  It is a no-op
                                if the key does not exist.  Multiple
                                --del arguments can be given.""")
    parser.add_argument('--override-gsm',
                        default=False,
                        action='store_true',
                        help="""When the device is set to only download over
                                WiFi, but is currently on GSM, use this switch
                                to temporarily override the update restriction.
                                This switch has no effect when using the cURL
                                based downloader.""")
    # Hidden system-image-cli only feature for testing purposes.  LP: #1333414
    parser.add_argument('--skip-gpg-verification',
                        default=False,
                        action='store_true',
                        help=argparse.SUPPRESS)

    args = parser.parse_args(sys.argv[1:])
    try:
        config.load(args.config)
    except (TypeError, FileNotFoundError):
        parser.error('\nConfiguration directory not found: {}'.format(
            args.config))
        assert 'parser.error() does not return'  # pragma: no cover

    if args.skip_gpg_verification:
        print("""\
WARNING: All GPG signature verifications have been disabled.
Your upgrades are INSECURE.""",
              file=sys.stderr)
        config.skip_gpg_verification = True

    config.override_gsm = args.override_gsm

    # Perform factory and production resets.
    if args.factory_reset:
        factory_reset()
        # We should never get here, except possibly during the testing
        # process, so just return as normal.
        return 0
    if args.production_reset:
        production_reset()
        # We should never get here, except possibly during the testing
        # process, so just return as normal.
        return 0

    # Handle all settings arguments.  They are mutually exclusive.
    if sum(
            bool(arg) for arg in (args.set, args.get, args.delete,
                                  args.show_settings)) > 1:
        parser.error('Cannot mix and match settings arguments')
        assert 'parser.error() does not return'  # pragma: no cover

    if args.show_settings:
        rows = sorted(Settings())
        for row in rows:
            print('{}={}'.format(*row))
        return 0
    if args.get:
        settings = Settings()
        for key in args.get:
            print(settings.get(key))
        return 0
    if args.set:
        settings = Settings()
        for keyval in args.set:
            key, val = keyval.split('=', 1)
            settings.set(key, val)
        return 0
    if args.delete:
        settings = Settings()
        for key in args.delete:
            settings.delete(key)
        return 0

    # Sanity check -f/--filter.
    if args.filter is None:
        candidate_filter = None
    elif args.filter == 'full':
        candidate_filter = full_filter
    elif args.filter == 'delta':
        candidate_filter = delta_filter
    else:
        parser.error('Bad filter type: {}'.format(args.filter))
        assert 'parser.error() does not return'  # pragma: no cover

    # Create the temporary directory if it doesn't exist.
    makedirs(config.system.tempdir)
    # Initialize the loggers.
    initialize(verbosity=args.verbose)
    log = logging.getLogger('systemimage')
    # We assume the cache_partition already exists, as does the /etc directory
    # (i.e. where the archive master key lives).

    # Command line overrides.  Process --switch first since if both it and
    # -c/-b are given, the latter take precedence.
    if args.switch is not None:
        config.build_number = 0
        config.channel = args.switch
    if args.build is not None:
        try:
            config.build_number = int(args.build)
        except ValueError:
            parser.error('-b/--build requires an integer: {}'.format(
                args.build))
            assert 'parser.error() does not return'  # pragma: no cover
    if args.channel is not None:
        config.channel = args.channel
    if args.device is not None:
        config.device = args.device
    if args.percentage is not None:
        config.phase_override = args.percentage

    if args.info:
        alias = getattr(config.service, 'channel_target', None)
        kws = dict(
            build_number=config.build_number,
            device=config.device,
            channel=config.channel,
            last_update=last_update_date(),
        )
        if alias is None:
            template = """\
                current build number: {build_number}
                device name: {device}
                channel: {channel}
                last update: {last_update}"""
        else:
            template = """\
                current build number: {build_number}
                device name: {device}
                channel: {channel}
                alias: {alias}
                last update: {last_update}"""
            kws['alias'] = alias
        print(dedent(template).format(**kws))
        # If there's additional version details, print this out now too.  We
        # sort the keys in reverse order because we want 'ubuntu' to generally
        # come first.
        details = version_detail()
        for key in sorted(details, reverse=True):
            print('version {}: {}'.format(key, details[key]))
        return 0

    DBusGMainLoop(set_as_default=True)

    if args.list_channels:
        state = State()
        try:
            state.run_thru('get_channel')
        except Exception:
            print(
                'Exception occurred during channel search; '
                'see log file for details',
                file=sys.stderr)
            log.exception('system-image-cli exception')
            return 1
        print('Available channels:')
        for key in sorted(state.channels):
            alias = state.channels[key].get('alias')
            if alias is None:
                print('    {}'.format(key))
            else:
                print('    {} (alias for: {})'.format(key, alias))
        return 0

    state = State()
    state.candidate_filter = candidate_filter
    if args.maximage is not None:
        state.winner_filter = version_filter(args.maximage)

    for meter in args.progress:
        if meter == 'dots':
            state.downloader.callbacks.append(_DotsProgress().callback)
        elif meter == 'json':
            state.downloader.callbacks.append(_json_progress)
        elif meter == 'logfile':
            state.downloader.callbacks.append(_LogfileProgress(log).callback)
        else:
            parser.error('Unknown progress meter: {}'.format(meter))
            assert 'parser.error() does not return'  # pragma: no cover

    if args.dry_run:
        try:
            state.run_until('download_files')
        except Exception:
            print(
                'Exception occurred during dry-run; '
                'see log file for details',
                file=sys.stderr)
            log.exception('system-image-cli exception')
            return 1
        # Say -c <no-such-channel> was given.  This will fail.
        if state.winner is None or len(state.winner) == 0:
            print('Already up-to-date')
        else:
            winning_path = [str(image.version) for image in state.winner]
            kws = dict(path=COLON.join(winning_path))
            target_build = state.winner[-1].version
            if state.channel_switch is None:
                # We're not switching channels due to an alias change.
                template = 'Upgrade path is {path}'
                percentage = phased_percentage(config.channel, target_build)
            else:
                # This upgrade changes the channel that our alias is mapped
                # to, so include that information in the output.
                template = 'Upgrade path is {path} ({from} -> {to})'
                kws['from'], kws['to'] = state.channel_switch
                percentage = phased_percentage(kws['to'], target_build)
            print(template.format(**kws))
            print('Target phase: {}%'.format(percentage))
        return 0
    else:
        # Run the state machine to conclusion.  Suppress all exceptions, but
        # note that the state machine will log them.  If an exception occurs,
        # exit with a non-zero status.
        log.info('running state machine [{}/{}]', config.channel,
                 config.device)
        try:
            if args.no_apply:
                state.run_until('apply')
            else:
                list(state)
        except KeyboardInterrupt:  # pragma: no cover
            return 0
        except Exception as error:
            print('Exception occurred during update; see log file for details',
                  file=sys.stderr)
            log.exception('system-image-cli exception')
            # This is a little bit of a hack because it's not generalized to
            # all values of --progress.  But OTOH, we always want to log the
            # error, so --progress=logfile is redundant, and --progress=dots
            # doesn't make much sense either.  Just just include some JSON
            # output if --progress=json was specified.
            if 'json' in args.progress:
                print(json.dumps(dict(type='error', msg=str(error))))
            return 1
        else:
            return 0
        finally:
            log.info('state machine finished')