Blame SOURCES/0042-Allow-change-of-arch-during-security-updates-with-no.patch

10ce35
From af5493156ecb1af3aedd5559a9a60b5df54a17ac Mon Sep 17 00:00:00 2001
10ce35
From: =?UTF-8?q?Ale=C5=A1=20Mat=C4=9Bj?= <amatej@redhat.com>
10ce35
Date: Wed, 7 Sep 2022 09:07:04 +0200
10ce35
Subject: [PATCH] Allow change of arch during security updates with noarch
10ce35
 (RhBug:2124483)
10ce35
10ce35
This matches upgrade behaviour where upgrading from/to noarch is a
10ce35
special case and architecture change of a package is allowed
10ce35
automatically.
10ce35
10ce35
= changelog =
10ce35
msg: Allow change of architecture for packages during security updates with noarch involved
10ce35
type: security
10ce35
resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2124483
10ce35
---
10ce35
 libdnf/sack/query.cpp | 34 ++++++++++++++++++++++++----------
10ce35
 1 file changed, 24 insertions(+), 10 deletions(-)
10ce35
10ce35
diff --git a/libdnf/sack/query.cpp b/libdnf/sack/query.cpp
10ce35
index 5355f9f7..b7b1560e 100644
10ce35
--- a/libdnf/sack/query.cpp
10ce35
+++ b/libdnf/sack/query.cpp
10ce35
@@ -189,6 +189,13 @@ NameArchSolvableComparator(const Solvable * first, const Solvable * second)
10ce35
     return first->arch < second->arch;
10ce35
 }
10ce35
 
10ce35
+static bool
10ce35
+NameSolvableComparator(const Solvable * first, const Solvable * second)
10ce35
+{
10ce35
+    return first->name < second->name;
10ce35
+}
10ce35
+
10ce35
+
10ce35
 static bool
10ce35
 NamePrioritySolvableKey(const Solvable * first, const Solvable * second)
10ce35
 {
10ce35
@@ -1878,11 +1885,14 @@ Query::Impl::filterAdvisory(const Filter & f, Map *m, int keyname)
10ce35
         std::vector<Solvable *> installed_solvables;
10ce35
 
10ce35
         if (cmp_type & HY_UPGRADE) {
10ce35
-            // When doing HY_UPGRADE consider only candidate pkgs that have matching Name and Arch with:
10ce35
-            // * some already installed pkg (in other words: some other version of the pkg is already installed)
10ce35
-            // or
10ce35
-            // * with pkg that obsoletes some already installed (or to be installed in this transaction) pkg
10ce35
-            // Otherwise a pkg with different Arch than installed can end up in upgrade set which is wrong.
10ce35
+            // When doing HY_UPGRADE consider only candidate pkgs that:
10ce35
+            // * have matching Name and Arch with some already installed pkg
10ce35
+            //   (in other words: some other version of the pkg is already installed)
10ce35
+            // * have matching Name with some already installed pkg and either the candidate or the installed pkg is noarch.
10ce35
+            //   This matches upgrade behavior where we allow architecture change only when noarch is involved.
10ce35
+            //   Details: RhBug:2124483, RhBug:2101398 and RhBug:1171543
10ce35
+            // * obsoletes some already installed (or to be installed in this transaction) pkg
10ce35
+            // Otherwise a pkg with different Arch than installed (and than noarch) can end up in upgrade set which is wrong.
10ce35
             // It can result in dependency issues, reported as: RhBug:2088149.
10ce35
 
10ce35
             Query installed(sack, ExcludeFlags::IGNORE_EXCLUDES);
10ce35
@@ -1893,7 +1903,7 @@ Query::Impl::filterAdvisory(const Filter & f, Map *m, int keyname)
10ce35
             while ((installed_id = installed.pImpl->result->next(installed_id)) != -1) {
10ce35
                 installed_solvables.push_back(pool_id2solvable(pool, installed_id));
10ce35
             }
10ce35
-            std::sort(installed_solvables.begin(), installed_solvables.end(), NameArchSolvableComparator);
10ce35
+            std::sort(installed_solvables.begin(), installed_solvables.end(), NameSolvableComparator);
10ce35
 
10ce35
             Query obsoletes(sack, ExcludeFlags::IGNORE_EXCLUDES);
10ce35
             obsoletes.addFilter(HY_PKG, HY_EQ, resultPset);
10ce35
@@ -1915,12 +1925,16 @@ Query::Impl::filterAdvisory(const Filter & f, Map *m, int keyname)
10ce35
             }
10ce35
 
10ce35
             Id id = -1;
10ce35
-            // Add to candidates resultPset pkgs that match name and arch with some already installed pkg
10ce35
+            // Add to candidates resultPset pkgs that match name and arch with some already installed pkg or match name and either the installed or candidate are NOARCH
10ce35
             while ((id = resultPset->next(id)) != -1) {
10ce35
                 Solvable * s = pool_id2solvable(pool, id);
10ce35
-                auto low = std::lower_bound(installed_solvables.begin(), installed_solvables.end(), s, NameArchSolvableComparator);
10ce35
-                if (low != installed_solvables.end() && s->name == (*low)->name && s->arch == (*low)->arch) {
10ce35
-                    candidates.push_back(s);
10ce35
+                auto low = std::lower_bound(installed_solvables.begin(), installed_solvables.end(), s, NameSolvableComparator);
10ce35
+                while (low != installed_solvables.end() && (*low)->name == s->name) {
10ce35
+                    if (s->arch == (*low)->arch || s->arch == ARCH_NOARCH || (*low)->arch == ARCH_NOARCH) {
10ce35
+                        candidates.push_back(s);
10ce35
+                        break;
10ce35
+                    }
10ce35
+                    ++low;
10ce35
                 }
10ce35
             }
10ce35
 
10ce35
-- 
10ce35
2.37.3
10ce35