1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882
|
# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Utilities for performing application setup operations.
"""
import itertools
import logging
import threading
import time
from collections import defaultdict
from typing import Union
import apt
from django.utils.translation import gettext_noop
import plinth
from plinth import app as app_module
from plinth.diagnostic_check import Result
from plinth.errors import MissingPackageError
from plinth.package import Packages
from plinth.signals import post_setup
from . import operation as operation_module
from . import package
from .privileged import packages as packages_privileged
logger = logging.getLogger(__name__)
is_first_setup_running = False
_is_shutting_down = False
thread_local_storage = threading.local()
def run_setup_on_app(app_id, allow_install=True, rerun=False):
"""Execute the setup process in a thread."""
# App is already up-to-date
app = app_module.App.get(app_id)
current_version = app.get_setup_version()
if not rerun and current_version >= app.info.version:
return
if not current_version:
name = gettext_noop('Installing app')
else:
name = gettext_noop('Updating app')
logger.debug('Creating operation to setup app: %s', app_id)
show_notification = show_message = (current_version
or not app.info.is_essential)
return operation_module.manager.new(
f'{app_id}-setup', app_id, name, _run_setup_on_app,
[app, current_version], show_message=show_message,
show_notification=show_notification,
thread_data={'allow_install': allow_install})
def _run_setup_on_app(app, current_version, repair: bool = False):
"""Execute the setup process."""
logger.info('Setup run: %s', app.app_id)
exception_to_update: Exception | None = None
message = None
try:
current_version = app.get_setup_version()
if current_version != 0:
# Check if this app needs force_upgrade. If it is needed, but not
# yet supported for the new version of the package, then an
# exception will be raised, so that we do not run setup.
package.refresh_package_lists()
force_upgrader = ForceUpgrader.get_instance()
force_upgrader.attempt_upgrade_for_app(app.app_id)
app.setup(old_version=current_version)
app.set_setup_version(app.info.version)
post_setup.send_robust(sender=app.__class__, module_name=app.app_id)
except Exception as exception:
exception_to_update = exception
if not current_version:
message = gettext_noop('Error installing app: {exception}')
elif repair:
message = gettext_noop('Error repairing app: {exception}')
else:
message = gettext_noop('Error updating app: {exception}')
else:
if not current_version:
message = gettext_noop('App installed.')
elif repair:
return
else:
message = gettext_noop('App updated')
logger.info('Setup completed: %s: %s %s', app.app_id, message,
exception_to_update)
operation = operation_module.Operation.get_operation()
operation.on_update(message, exception_to_update)
def run_repair_on_app(app_id, create_operation=True):
"""Execute the repair process in a thread.
In case this is called from within another operation, creating a new
operation can be skipped.
"""
app = app_module.App.get(app_id)
current_version = app.get_setup_version()
if not current_version:
logger.warning('App %s is not installed, cannot repair', app_id)
return
if create_operation:
logger.debug('Creating operation to repair app: %s', app_id)
return operation_module.manager.new(f'{app_id}-repair', app_id,
gettext_noop('Repairing app'),
_run_repair_on_app, [app],
show_message=True,
show_notification=True)
# Re-use existing operation.
try:
operation = operation_module.Operation.get_operation()
except AttributeError:
raise RuntimeError(
'run_repair_on_app: Expected an existing operation.')
# XXX: Ugly hack to re-use operation from another app.
operation.app_id = app_id
_run_repair_on_app(app)
def _run_repair_on_app(app: app_module.App):
"""Execute the repair process."""
logger.info('Repair run: %s', app.app_id)
message = None
operation = operation_module.Operation.get_operation()
# Always re-run diagnostics first for this app, to ensure results are
# current.
checks = []
try:
checks = app.diagnose()
except Exception as exception:
logger.error('Error running %s diagnostics - %s', app.app_id,
exception)
message = gettext_noop('Error running diagnostics: {error}').format(
error=exception)
operation.on_update(message, exception)
return
# Filter for checks that have failed.
failed_checks = []
for check in checks:
if check.result in [Result.FAILED, Result.WARNING]:
failed_checks.append(check)
if not failed_checks:
logger.warning('Skipping repair for %s: no failed checks', app.app_id)
message = gettext_noop('Skipping repair, no failed checks')
operation.on_update(message, None)
return
try:
should_rerun_setup = app.repair(failed_checks)
except Exception as exception:
logger.error('Repair error: %s: %s %s', app.app_id, message, exception)
message = gettext_noop('Error repairing app: {error}').format(
error=exception)
operation.on_update(message, exception)
return
if should_rerun_setup:
message = gettext_noop('Re-running setup to complete repairs')
operation.on_update(message, None)
current_version = app.get_setup_version()
_run_setup_on_app(app, current_version, True)
logger.info('Repair completed: %s', app.app_id)
# Check for errors in thread local storage
message = gettext_noop('App repaired.')
errors = retrieve_error_messages()
exceptions = None
if errors:
message = gettext_noop('App repair completed with errors:\n')
error_message = ''
for error in errors:
message += str(error) + '\n'
error_message += str(error) + '\n'
exceptions = Exception(error_message)
operation.on_update(message, exceptions)
def run_uninstall_on_app(app_id):
"""Execute the uninstall process in a thread."""
# App is already uninstalled
app = app_module.App.get(app_id)
if not app.get_setup_version():
return
logger.debug('Creating operation to uninstall app: %s', app_id)
return operation_module.manager.new(f'{app_id}-uninstall', app_id,
gettext_noop('Uninstalling app'),
_run_uninstall_on_app, [app],
show_notification=True)
def _run_uninstall_on_app(app):
"""Execute the uninstall process."""
logger.info('Uninstall run: %s', app.app_id)
exception_to_update = None
message = None
try:
app.disable()
app.uninstall()
app.set_setup_version(0)
except Exception as exception:
exception_to_update = exception
message = gettext_noop('Error uninstalling app: {error}').format(
error=exception)
else:
message = gettext_noop('App uninstalled.')
logger.info('Uninstall completed: %s: %s %s', app.app_id, message,
exception_to_update)
operation = operation_module.Operation.get_operation()
operation.on_update(message, exception_to_update)
def stop():
"""Set a flag to indicate that the setup process must stop."""
global _is_shutting_down
_is_shutting_down = True
force_upgrader = ForceUpgrader.get_instance()
force_upgrader.shutdown()
dpkg_handler = DpkgHandler.get_instance()
dpkg_handler.shutdown()
def setup_apps(app_ids=None, essential=False, allow_install=True):
"""Run setup on selected or essential apps."""
logger.info(
'Running setup for apps, essential - %s, '
'selected apps - %s', essential, app_ids)
for app in app_module.App.list():
if essential and not app.info.is_essential:
continue
if app_ids and app.app_id not in app_ids:
continue
operation = run_setup_on_app(app.app_id, allow_install=allow_install)
if operation:
operation.join()
def list_dependencies(app_ids=None, essential=False):
"""Print list of packages required by selected or essential apps."""
for app in app_module.App.list():
if essential and not app.info.is_essential:
continue
if app_ids and app.app_id not in app_ids and \
'*' not in app_ids:
continue
for component in app.get_components_of_type(Packages):
for package_expression in component.package_expressions:
print(package_expression)
def run_setup_on_startup():
"""Run setup with retry till it succeeds."""
is_first_setup = any((app for app in app_module.App.list()
if app.info.is_essential and app.needs_setup()))
sleep_time = 10
while True:
try:
if is_first_setup:
logger.info('Running first setup.')
_run_first_setup()
break
else:
logger.info('Running regular setup.')
_run_regular_setup()
break
except Exception as ex:
logger.warning('Unable to complete setup: %s', ex)
logger.info('Will try again in {} seconds'.format(sleep_time))
time.sleep(sleep_time)
if _is_shutting_down:
break
logger.info('Setup finished.')
def _run_first_setup():
"""Run setup on essential apps on first setup."""
global is_first_setup_running
is_first_setup_running = True
run_setup_on_apps(None, allow_install=False)
is_first_setup_running = False
def _run_regular_setup():
"""Run setup on all apps also installing required packages."""
app_ids = _get_apps_for_regular_setup()
run_setup_on_apps(app_ids, allow_install=True)
def _get_apps_for_regular_setup():
def is_setup_required(app):
"""Setup is required for:
1. essential apps that are not up-to-date
2. non-essential app that are installed and need updates
"""
if (app.info.is_essential and app.get_setup_state()
!= app_module.App.SetupState.UP_TO_DATE):
return True
if app.get_setup_state() == app_module.App.SetupState.NEEDS_UPDATE:
return True
return False
return [
app.app_id for app in app_module.App.list() if is_setup_required(app)
]
def run_setup_on_apps(app_ids, allow_install=True):
"""Run setup on the given list of apps.
apps is the list of apps to run setup on. If None is given, run setup on
all essential apps only.
allow_install with or without package installation. When setting up
essential apps, installing packages is not required as FreedomBox
(Plinth) itself has dependencies on all essential apps.
"""
try:
if not app_ids:
setup_apps(essential=True, allow_install=allow_install)
else:
setup_apps(app_ids, allow_install=allow_install)
except Exception as exception:
logger.exception('Error running setup - %s', exception)
raise
class ForceUpgrader():
"""Find and upgrade packages by force when conffile prompt is needed.
Primary duty here is take responsibility of packages that will be rejected
by unattended-upgrades for upgrades. Only packages that apps manage are
handled as that is only case in which we know how to deal with
configuration file changes. Roughly, we will read old configuration file,
force upgrade the package with new configuration and then apply the old
preferences on it.
When upgrades packages, many things have to be kept in mind. The following
is the understanding on how unattended-upgrades does its upgrades. These
precautions need to be taken into account whenever relevant.
Checks done by unattended upgrades before upgrading:
- Check if today is a configured patch day.
- Check if running on development release.
- Cache does not have broken packages.
- Whether system (and hence this process itself) is shutting down.
- System is on AC Power (if configured).
- Whether system is on a metered connection.
- Package system is locked.
- Check if dpkg journal is dirty and fix it.
- Take care that upgrade process does not terminate/crash self.
- Check if cache has broken dependencies.
- Remove auto removable packages.
- Download all packages before upgrade
- Perform conffile prompt checks
- Ignore if dpkg options has --force-confold or --force-confnew
Unattended upgrades checks for configuration file prompts as follows:
- Package downloaded successfully.
- Package is complete.
- File is available.
- Package is trusted.
- Package is not in denylist.
- Package extension is .deb.
- Get conffiles values from control data of .deb.
- Read from /var/lib/dpkg/status, Package and Conffiles section.
- Read each conffile from system and compute md5sum.
- If new package md5sum == dpkg status md5 == file's md5 then no conffile
prompt.
- If conffiles in new package not found in dpkg status but found on system
with different md5sum, conffile prompt is available.
Filtering of packages to upgrade is done as follows:
- Packages is upgradable.
- Remove packages from denylist
- Remove packages unless in allowlist or allowlist is empty
- Package in allowed origins
- Don't consider packages that require restart (if configured).
- Package dependencies satisfy origins, denylist and allowlist.
- Order packages alphabetically (order changes when upgrading in minimal
steps).
The upgrade process looks like:
- Check for install while shutting down.
- Check for dry run.
- Mail list of changes.
- Upgrade in minimal steps.
- Clean downloaded packages.
"""
_instance = None
_run_lock = threading.Lock()
_wait_event = threading.Event()
UPGRADE_ATTEMPTS = 12
UPGRADE_ATTEMPT_WAIT_SECONDS = 30 * 60
class TemporaryFailure(Exception):
"""Raised when upgrade fails but can be tried again immediately."""
class PermanentFailure(Exception):
"""Raised when upgrade fails and there is nothing more we wish to do.
"""
@classmethod
def get_instance(cls):
"""Return a single instance of a the class."""
if not cls._instance:
cls._instance = ForceUpgrader()
return cls._instance
def __init__(self):
"""Initialize the force upgrader."""
if plinth.cfg.develop:
self.UPGRADE_ATTEMPT_WAIT_SECONDS = 10
def on_package_cache_updated(self):
"""Trigger upgrades when notified about changes to package cache.
Call the upgrade process guaranteeing that it will not run more than
once simultaneously.
"""
if not self._run_lock.acquire(blocking=False):
logger.info('Package upgrade already in process')
return
try:
self._run_upgrade()
finally:
self._run_lock.release()
def _run_upgrade(self):
"""Attempt the upgrade process multiple times.
This method is guaranteed to not to run more than once simultaneously.
"""
for _ in range(self.UPGRADE_ATTEMPTS):
try:
logger.info('Attempting to perform upgrade')
self._attempt_upgrade()
logger.info('Completed upgrade')
return
except self.TemporaryFailure as exception:
logger.info('Cannot perform upgrade now: %s', exception)
except self.PermanentFailure as exception:
logger.error('Upgrade failed: %s', exception)
return
except Exception as exception:
# Assume all other errors are temporary
logger.exception('Unknown exception: %s', exception)
logger.info('Waiting for %s seconds before attempting upgrade',
self.UPGRADE_ATTEMPT_WAIT_SECONDS)
if self._wait_event.wait(self.UPGRADE_ATTEMPT_WAIT_SECONDS):
logger.info('Stopping upgrade attempts due to shutdown')
return
logger.info('Giving up on upgrade after too many retries')
def shutdown(self):
"""If we are sleeping for next attempt, cancel it.
If we are actually upgrading packages, do nothing.
"""
self._wait_event.set()
def _attempt_upgrade(self):
"""Attempt to perform an upgrade.
Raise TemporaryFailure if upgrade can't be performed now.
Raise PermanentFailure if upgrade can't be performed until something
with the system state changes. We don't want to try again until
notified of further package cache changes.
Return nothing otherwise.
"""
if _is_shutting_down:
raise self.PermanentFailure('Service is shutting down')
if packages_privileged.is_package_manager_busy():
raise self.TemporaryFailure('Package manager is busy')
apps = self._get_list_of_apps_to_force_upgrade()
logger.info(
'Apps needing conffile upgrades: %s', ', '.join(
[str(app_module.App.get(app_id).info.name) for app_id in apps])
or 'None')
need_retry = False
for app_id, packages in apps.items():
app = app_module.App.get(app_id)
try:
logger.info('Force upgrading app: %s', app.info.name)
if self._run_force_upgrade_as_operation(app, packages):
logger.info('Successfully force upgraded app: %s',
app.info.name)
else:
logger.info('Ignored force upgrade for app: %s',
app.info.name)
except Exception as exception:
logger.exception('Error running force upgrade: %s', exception)
need_retry = True
# Continue trying to upgrade other apps
if need_retry:
raise self.TemporaryFailure('Some apps failed to force upgrade.')
def attempt_upgrade_for_app(self, app_id):
"""Attempt to perform an upgrade for specified app.
Raise TemporaryFailure if upgrade can't be performed now.
Raise PermanentFailure if upgrade can't be performed until something
with the system state changes. We don't want to try again until
notified of further package cache changes.
Return True if upgrade was performed successfully.
Return False if upgrade is not needed.
"""
if _is_shutting_down:
raise self.PermanentFailure('Service is shutting down')
if packages_privileged.is_package_manager_busy():
raise self.TemporaryFailure('Package manager is busy')
apps = self._get_list_of_apps_to_force_upgrade()
if app_id not in apps:
logger.info('App %s does not need force upgrade', app_id)
return False
packages = apps[app_id]
app = app_module.App.get(app_id)
try:
logger.info('Force upgrading app: %s', app.info.name)
if app.force_upgrade(packages):
logger.info('Successfully force upgraded app: %s',
app.info.name)
return True
else:
logger.warning('Ignored force upgrade for app: %s',
app.info.name)
raise self.TemporaryFailure(
'Force upgrade is needed, but not yet implemented for new '
f'version of app: {app_id}')
except Exception as exception:
logger.exception('Error running force upgrade: %s', exception)
raise self.TemporaryFailure(
f'App {app_id} failed to force upgrade.')
def _run_force_upgrade_as_operation(self, app, packages):
"""Start an operation for force upgrading."""
name = gettext_noop('Updating app packages')
operation = operation_module.manager.new(f'{app.app_id}-force-upgrade',
app.app_id, name,
app.force_upgrade, [packages],
show_message=False,
show_notification=False)
return operation.join() # Wait for completion, raise Exception
def _get_list_of_apps_to_force_upgrade(self):
"""Return a list of app on which to run force upgrade."""
packages = self._get_list_of_upgradable_packages()
if not packages: # No packages to upgrade
return {}
package_names = [package.name for package in packages]
logger.info('Packages available for upgrade: %s',
', '.join(package_names))
managed_packages, package_apps_map = self._filter_managed_packages(
package_names)
if not managed_packages:
return {}
conffile_packages = package.filter_conffile_prompt_packages(
managed_packages)
logger.info('Packages that need conffile upgrades: %s',
conffile_packages)
apps = defaultdict(dict)
for package_name in conffile_packages:
for app_id in package_apps_map[package_name]:
apps[app_id][package_name] = conffile_packages[package_name]
return apps
@staticmethod
def _get_list_of_upgradable_packages():
"""Return list of packages that can be upgraded."""
cache = apt.cache.Cache()
return [package for package in cache if package.is_upgradable]
@staticmethod
def _filter_managed_packages(packages):
"""Filter out packages that apps don't force upgrade.
Return packages in the list that are managed by at least one app that
can perform force upgrade.
"""
package_apps_map = defaultdict(set)
upgradable_packages = set()
for app in app_module.App.list():
if not getattr(app, 'force_upgrade', None):
# App does not implement force upgrade
continue
if app.get_setup_state() == app_module.App.SetupState.NEEDS_SETUP:
# If an app is not installed don't considered it. If an app
# needs an update, it may have to do a force upgrade before
# running app version update. This is because the app version
# update process will include installing packages that will
# fail due to pending configuration file updates.
continue
for component in app.get_components_of_type(Packages):
upgradable_packages.update(component.possible_packages)
for managed_package in component.possible_packages:
package_apps_map[managed_package].add(app.app_id)
return upgradable_packages.intersection(
set(packages)), package_apps_map
def on_package_cache_updated():
"""Called by D-Bus service when apt package cache is updated."""
force_upgrader = ForceUpgrader.get_instance()
force_upgrader.on_package_cache_updated()
class DpkgHandler:
"""Find and rerun setup for apps after a dpkg operation is completed.
This is needed in a couple of situations:
1) Some Debian packages don't manage the database used by the package. When
these packages are updated, their database schema is left at an older
version and service might become unavailable. FreedomBox can perform the
database schema upgrade. However, FreedomBox needs to know when a package
has been updated so that database schema can be upgraded.
2) A package is installed but FreedomBox has not modified its
configuration. Newer version of package becomes available with a new
configuration file. Since the original configuration file has not changed
at all, the new configuration file overwrites the old one and
unattended-upgrades deals with this case. Now, say, the configuration file
modifies some defaults that FreedomBox expects things might break. In this
case, FreedomBox can apply the require configuration changes but it needs
to notified as soon as the package has been updated.
When apt runs dpkg, after the operation is completed it triggers commands
listed under the configuration 'Dpkg::Post-Invoke'. This in turn calls this
class via a DBus notification. Here, we iterate through all the apps. If an
app is currently installed and interested in rerunning setup after dpkg
operations, then its setup is rerun. Interest is expressed using the
'rerun_setup_on_upgrade' flag on the Package() component. If all packages
of the app have not be upgraded since the last check, we skip the
operation.
"""
_instance: Union['DpkgHandler', None] = None
_run_lock = threading.Lock()
_wait_event = threading.Event()
HANDLE_ATTEMPTS: int = 12
HANDLE_ATTEMPT_WAIT_SECONDS: int = 30 * 60
class TemporaryFailure(Exception):
"""Raised when post-dpkg operations fails but can be tried again."""
class PermanentFailure(Exception):
"""Raised when post-dpkg operations fails.
And there is nothing more we wish to do.
"""
@classmethod
def get_instance(cls) -> 'DpkgHandler':
"""Return a single instance of a the class."""
if not cls._instance:
cls._instance = DpkgHandler()
return cls._instance
def __init__(self) -> None:
"""Initialize the dpkg handler."""
if plinth.cfg.develop:
self.HANDLE_ATTEMPT_WAIT_SECONDS = 10
def on_dpkg_invoked(self) -> None:
"""Trigger post-dpkg operations when notified about dpkg invocation.
Call the post-dpkg operations guaranteeing that it will not run more
than once simultaneously.
"""
if not self._run_lock.acquire(blocking=False):
logger.info('Post dpkg operations already in process')
return
try:
self._on_dpkg_invoked()
finally:
self._run_lock.release()
def _on_dpkg_invoked(self) -> None:
"""Attempt the post-dpkg operations multiple times.
This method is guaranteed to not to run more than once simultaneously.
"""
for _ in range(self.HANDLE_ATTEMPTS):
try:
logger.info('Attempting to perform post-dpkg operations')
self._attempt_post_invoke()
logger.info('Completed post-dpkg operations')
return
except self.TemporaryFailure as exception:
logger.info('Cannot perform post-dpkg operations now: %s',
exception)
except self.PermanentFailure as exception:
logger.error('Post-dpkg operations failed: %s', exception)
return
except Exception as exception:
# Assume all other errors are temporary
logger.exception('Unknown exception: %s', exception)
logger.info(
'Waiting for %s seconds before attempting post-dpkg '
'operations', self.HANDLE_ATTEMPT_WAIT_SECONDS)
if self._wait_event.wait(self.HANDLE_ATTEMPT_WAIT_SECONDS):
logger.info(
'Stopping post-dpkg operation attempts due to shutdown')
return
logger.info('Giving up on post-dpkg operations after too many retries')
def _attempt_post_invoke(self) -> None:
"""Run post-dpkg invoke operations on all interested app."""
if _is_shutting_down:
raise self.PermanentFailure('Service is shutting down')
if packages_privileged.is_package_manager_busy():
raise self.TemporaryFailure('Package manager is busy')
for app in app_module.App.list():
self._post_invoke_on_app(app)
def _post_invoke_on_app(self, app: app_module.App) -> None:
"""Run post-dpkg invoke operations on a single app."""
components = list(app.get_components_of_type(Packages))
app_interested = any(
(component.rerun_setup_on_upgrade for component in components))
if not app_interested:
# App is not interested in re-running setup after a package has
# been updated.
return
if app.get_setup_state() == app_module.App.SetupState.NEEDS_SETUP:
# The app is not installed. Don't try to set it up.
return
try:
packages = list(
itertools.chain.from_iterable(component.get_actual_packages()
for component in components))
except MissingPackageError:
# If there are some packages needed by this app that are missing,
# there is no way we can rerun setup for this app. Give up, don't
# retry.
return
if not self._app_needs_setup_rerun(app, packages):
# App does not need a setup rerun
return
operation = run_setup_on_app(app.app_id, rerun=True)
if operation:
operation.join()
def _app_needs_setup_rerun(self, app: app_module.App,
packages: list[str]) -> bool:
"""Return whether an app needs an rerun."""
packages_known = package.get_known()
cache = apt.Cache()
for package_ in packages:
try:
cache_package = cache[package_]
except KeyError:
logger.warning('For installed app %s, package %s is not known',
app.app_id, package_)
return False
if not cache_package.installed:
# App is installed but one of the needed packages is not
# installed. Don't know what to do. Don't rerun.
logger.warning(
'For installed app %s, package %s is not installed',
app.app_id, package_)
return False
installed_version = cache_package.installed.version
package_known = packages_known.get(package_, {})
version_known = package_known.get('version')
if installed_version != version_known:
return True
# Latest versions of all packages of the app have already been
# processed (and thus known).
return False
def shutdown(self) -> None:
"""If we are sleeping for next attempt, cancel it.
If we are actually performing operations, do nothing.
"""
self._wait_event.set()
def on_dpkg_invoked():
"""Called by D-Bus service when dpkg has been invoked."""
dpkg_handler = DpkgHandler.get_instance()
dpkg_handler.on_dpkg_invoked()
def store_error_message(error_message: str):
"""Add an error message to thread local storage."""
try:
thread_local_storage.errors.append(error_message)
except AttributeError:
thread_local_storage.errors = [error_message]
def retrieve_error_messages() -> list[str]:
"""Retrieve the error messages from thread local storage.
Errors are cleared after retrieval."""
try:
errors = thread_local_storage.errors
thread_local_storage.errors = []
except AttributeError:
errors = []
return errors
|