forked from pool/docker
2b14743f6e
- Update to Docker 26.1.5-ce. See upstream changelog online at <https://docs.docker.com/engine/release-notes/26.1/#2615> - This update includes a fix for CVE-2024-41110. bsc#1228324 - Rebase patches: * 0001-SECRETS-daemon-allow-directory-creation-in-run-secre.patch * 0002-SECRETS-SUSE-implement-SUSE-container-secrets.patch * 0003-BUILD-SLE12-revert-graphdriver-btrfs-use-kernel-UAPI.patch * 0004-bsc1073877-apparmor-clobber-docker-default-profile-o.patch * 0005-SLE12-revert-apparmor-remove-version-conditionals-fr.patch * 0006-bsc1221916-update-to-patched-buildkit-version-to-fix.patch * 0007-bsc1214855-volume-use-AtomicWriteFile-to-save-volume.patch * cli-0001-docs-include-required-tools-in-source-tree.patch OBS-URL: https://build.opensuse.org/request/show/1190567 OBS-URL: https://build.opensuse.org/package/show/Virtualization:containers/docker?expand=0&rev=406
90 lines
3.2 KiB
Diff
90 lines
3.2 KiB
Diff
From 8829bb8ec53399fd41dd6f46e2bad64e773e8eaa Mon Sep 17 00:00:00 2001
|
|
From: Aleksa Sarai <asarai@suse.de>
|
|
Date: Fri, 29 Jun 2018 17:59:30 +1000
|
|
Subject: [PATCH 4/7] bsc1073877: apparmor: clobber docker-default profile on
|
|
start
|
|
|
|
In the process of making docker-default reloading far less expensive,
|
|
567ef8e7858c ("daemon: switch to 'ensure' workflow for AppArmor
|
|
profiles") mistakenly made the initial profile load at dockerd start-up
|
|
lazy. As a result, if you have a running Docker daemon and upgrade it to
|
|
a new one with an updated AppArmor profile the new profile will not take
|
|
effect (because the old one is still loaded). The fix for this is quite
|
|
trivial, and just requires us to clobber the profile on start-up.
|
|
|
|
Fixes: 567ef8e7858c ("daemon: switch to 'ensure' workflow for AppArmor profiles")
|
|
SUSE-Bugs: bsc#1099277
|
|
Signed-off-by: Aleksa Sarai <asarai@suse.de>
|
|
---
|
|
daemon/apparmor_default.go | 14 ++++++++++----
|
|
daemon/apparmor_default_unsupported.go | 4 ++++
|
|
daemon/daemon.go | 5 +++--
|
|
3 files changed, 17 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/daemon/apparmor_default.go b/daemon/apparmor_default.go
|
|
index 81e10b6cbec0..e695667a190f 100644
|
|
--- a/daemon/apparmor_default.go
|
|
+++ b/daemon/apparmor_default.go
|
|
@@ -23,6 +23,15 @@ func DefaultApparmorProfile() string {
|
|
return ""
|
|
}
|
|
|
|
+func clobberDefaultAppArmorProfile() error {
|
|
+ if apparmor.HostSupports() {
|
|
+ if err := aaprofile.InstallDefault(defaultAppArmorProfile); err != nil {
|
|
+ return fmt.Errorf("AppArmor enabled on system but the %s profile could not be loaded: %s", defaultAppArmorProfile, err)
|
|
+ }
|
|
+ }
|
|
+ return nil
|
|
+}
|
|
+
|
|
func ensureDefaultAppArmorProfile() error {
|
|
if apparmor.HostSupports() {
|
|
loaded, err := aaprofile.IsLoaded(defaultAppArmorProfile)
|
|
@@ -36,10 +45,7 @@ func ensureDefaultAppArmorProfile() error {
|
|
}
|
|
|
|
// Load the profile.
|
|
- if err := aaprofile.InstallDefault(defaultAppArmorProfile); err != nil {
|
|
- return fmt.Errorf("AppArmor enabled on system but the %s profile could not be loaded: %s", defaultAppArmorProfile, err)
|
|
- }
|
|
+ return clobberDefaultAppArmorProfile()
|
|
}
|
|
-
|
|
return nil
|
|
}
|
|
diff --git a/daemon/apparmor_default_unsupported.go b/daemon/apparmor_default_unsupported.go
|
|
index be4938f5b61a..2b326fea5829 100644
|
|
--- a/daemon/apparmor_default_unsupported.go
|
|
+++ b/daemon/apparmor_default_unsupported.go
|
|
@@ -2,6 +2,10 @@
|
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
|
|
|
+func clobberDefaultAppArmorProfile() error {
|
|
+ return nil
|
|
+}
|
|
+
|
|
func ensureDefaultAppArmorProfile() error {
|
|
return nil
|
|
}
|
|
diff --git a/daemon/daemon.go b/daemon/daemon.go
|
|
index e7ca77d8cbfc..13b39538fb00 100644
|
|
--- a/daemon/daemon.go
|
|
+++ b/daemon/daemon.go
|
|
@@ -916,8 +916,9 @@ func NewDaemon(ctx context.Context, config *config.Config, pluginStore *plugin.S
|
|
log.G(ctx).Warnf("Failed to configure golang's threads limit: %v", err)
|
|
}
|
|
|
|
- // ensureDefaultAppArmorProfile does nothing if apparmor is disabled
|
|
- if err := ensureDefaultAppArmorProfile(); err != nil {
|
|
+ // Make sure we clobber any pre-existing docker-default profile to ensure
|
|
+ // that upgrades to the profile actually work smoothly.
|
|
+ if err := clobberDefaultAppArmorProfile(); err != nil {
|
|
log.G(ctx).Errorf(err.Error())
|
|
}
|
|
|
|
--
|
|
2.45.2
|
|
|