Blame SOURCES/modulemd-2.13.0-Accept-18446744073709551615-buildorder-if-accept_ove.patch

a8f232
From b0dd663edd6ab66ec26c48ff34a52afa040694e6 Mon Sep 17 00:00:00 2001
a8f232
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
a8f232
Date: Thu, 22 Jul 2021 15:23:55 +0200
a8f232
Subject: [PATCH] Accept 18446744073709551615 buildorder if
a8f232
 accept_overflowed_buildorder build boolean is true
a8f232
MIME-Version: 1.0
a8f232
Content-Type: text/plain; charset=UTF-8
a8f232
Content-Transfer-Encoding: 8bit
a8f232
a8f232
7c0158bcec05b692d27e37ff46a134f4e294d957 commit (Reject invalid signed
a8f232
integers (rpm buildorder), as found in 2.13.0 release, fortified
a8f232
parsing signed integers.
a8f232
a8f232
It turned out that RHEL 8 delivers a few modules:
a8f232
a8f232
container-tools:rhel8:8020120200601155013:ffd2803a
a8f232
container-tools:rhel8:8030020200923153805:2a301c24
a8f232
container-tools:rhel8:8030020201124131330:830d479e
a8f232
container-tools:rhel8:8030120210208205200:c127ee91
a8f232
a8f232
which contain an invalid buildorder value 18446744073709551615. DNF
a8f232
then warned on loading them into an index and ignored them:
a8f232
a8f232
    # dnf module list --repoid pulp-appstream
a8f232
    Last metadata expiration check: 3:59:10 ago on Wed 21 Jul 2021 12:38:00 PM CEST.
a8f232
    Module yaml error: Failed to parse buildorder in component: 18446744073709551615: The integer value is larger than 9223372036854775807 [line 118 col 9]
a8f232
    Module yaml error: Failed to parse buildorder in component: 18446744073709551615: The integer value is larger than 9223372036854775807 [line 118 col 9]
a8f232
    Module yaml error: Failed to parse buildorder in component: 18446744073709551615: The integer value is larger than 9223372036854775807 [line 107 col 9]
a8f232
    Module yaml error: Failed to parse buildorder in component: 18446744073709551615: The integer value is larger than 9223372036854775807 [line 114 col 9]
a8f232
    Module yaml error: Failed to parse buildorder in component: 18446744073709551615: The integer value is larger than 9223372036854775807 [line 118 col 9]
a8f232
    Module yaml error: Failed to parse buildorder in component: 18446744073709551615: The integer value is larger than 9223372036854775807 [line 118 col 9]
a8f232
    Module yaml error: Failed to parse buildorder in component: 18446744073709551615: The integer value is larger than 9223372036854775807 [line 107 col 9]
a8f232
    Module yaml error: Failed to parse buildorder in component: 18446744073709551615: The integer value is larger than 9223372036854775807 [line 114 col 9]
a8f232
a8f232
Those were probably built with a broken MBS/libmodulemd which
a8f232
loaded -1 and serialized it as an 64-bit unsigned integer
a8f232
18446744073709551615.
a8f232
a8f232
Because the distributor does not change once-released builds, it
a8f232
became impossible to process them with libmodulemd-2.13.0.
a8f232
a8f232
This patch adds an accept_overflowed_buildorder build option (disabled
a8f232
by default) which enables a workaround to accept 18446744073709551615
a8f232
string as -1 integer when parsing 64-bit signed integers. (The type is
a8f232
used only in buildorder field now).
a8f232
a8f232
(Originally, I developed a more complicated patch only affecting
a8f232
loading while keeping validation strict. But that was not enough for
a8f232
DNF, creareterepo_c and probably many other tools. Thus I prepared
a8f232
even more complicated patch affecting both loading and validation of
a8f232
modulemd formats only (cf. modulemd-packager-v3) and that helped DNF.
a8f232
But the patch ugglified to code to much and considering it's only
a8f232
a temporary hack, I decided for this simple patch which affects
a8f232
loading and validation of all formats.)
a8f232
a8f232
Petr Písař: Ported to 2.13.0 from
a8f232
37a688cc12d7fbab67fda95c47a4605405d7a154.
a8f232
a8f232
Signed-off-by: Petr Písař <ppisar@redhat.com>
a8f232
---
a8f232
 meson.build                                |  1 +
a8f232
 meson_options.txt                          |  3 +++
a8f232
 modulemd/meson.build                       |  2 ++
a8f232
 modulemd/modulemd-yaml-util.c              | 11 +++++++++++
a8f232
 modulemd/tests/test-modulemd-parse_int64.c | 15 ++++++++++++++-
a8f232
 5 files changed, 31 insertions(+), 1 deletion(-)
a8f232
a8f232
diff --git a/meson.build b/meson.build
a8f232
index 37792b3..bbb56ba 100644
a8f232
--- a/meson.build
a8f232
+++ b/meson.build
a8f232
@@ -215,6 +215,7 @@ if meson.version().version_compare('>=0.53')
a8f232
              'Python 2 Support': get_option('with_py2'),
a8f232
              'Python 3 Support': get_option('with_py3'),
a8f232
              'Skip Introspection': get_option('skip_introspection'),
a8f232
+             'Accept overflowed buildorder': get_option('accept_overflowed_buildorder'),
a8f232
              'Test Installed Library': get_option('test_installed_lib'),
a8f232
             }, section: 'Build Configuration')
a8f232
 endif
a8f232
diff --git a/meson_options.txt b/meson_options.txt
a8f232
index 7873d42..3d84459 100644
a8f232
--- a/meson_options.txt
a8f232
+++ b/meson_options.txt
a8f232
@@ -11,6 +11,9 @@
a8f232
 #
a8f232
 # REMEMBER TO UPDATE THE SUMMARY() IN meson.build when adding options here
a8f232
 
a8f232
+option('accept_overflowed_buildorder', type : 'boolean', value: 'false',
a8f232
+       description : 'Accept overflowed 18446744073709551615 buildorder as -1. This breaks a specification, but some RHEL 8 module builds look like that.')
a8f232
+
a8f232
 option('verbose_tests', type : 'boolean', value : true,
a8f232
        description : 'Tests that are run under the "debug" configuration will print all debug messages. Disable this option for valgrind checks, as it speeds it up substantially.')
a8f232
 
a8f232
diff --git a/modulemd/meson.build b/modulemd/meson.build
a8f232
index 2a60364..0b74818 100644
a8f232
--- a/modulemd/meson.build
a8f232
+++ b/modulemd/meson.build
a8f232
@@ -14,6 +14,7 @@
a8f232
 test_installed_lib = get_option('test_installed_lib')
a8f232
 skip_introspection = get_option('skip_introspection')
a8f232
 verbose_tests = get_option('verbose_tests')
a8f232
+accept_overflowed_buildorder = get_option('accept_overflowed_buildorder')
a8f232
 clang_simple_version_script = find_program ('clang_simple_version.sh')
a8f232
 
a8f232
 
a8f232
@@ -144,6 +145,7 @@ cdata.set('HAVE_RPMIO', rpm.found())
a8f232
 cdata.set('HAVE_LIBMAGIC', magic.found())
a8f232
 cdata.set('HAVE_GDATE_AUTOPTR', has_gdate_autoptr)
a8f232
 cdata.set('HAVE_EXTEND_AND_STEAL', has_extend_and_steal)
a8f232
+cdata.set('HAVE_OVERFLOWED_BUILDORDER', accept_overflowed_buildorder)
a8f232
 configure_file(
a8f232
   output : 'config.h',
a8f232
   configuration : cdata
a8f232
diff --git a/modulemd/modulemd-yaml-util.c b/modulemd/modulemd-yaml-util.c
a8f232
index 6cbf4cc..ad0bd3c 100644
a8f232
--- a/modulemd/modulemd-yaml-util.c
a8f232
+++ b/modulemd/modulemd-yaml-util.c
a8f232
@@ -11,6 +11,7 @@
a8f232
  * For more information on free software, see <https://www.gnu.org/philosophy/free-sw.en.html>.
a8f232
  */
a8f232
 
a8f232
+#include "config.h"
a8f232
 #include "modulemd-errors.h"
a8f232
 #include "private/modulemd-subdocument-info-private.h"
a8f232
 #include "private/modulemd-util.h"
a8f232
@@ -441,6 +442,16 @@ modulemd_yaml_parse_int64 (yaml_parser_t *parser, GError **error)
a8f232
 
a8f232
   if ((value == G_MAXINT64 && errno == ERANGE))
a8f232
     {
a8f232
+#ifdef HAVE_OVERFLOWED_BUILDORDER
a8f232
+      /* A temporary hack. Remove when RHEL 8 goes end of life. */
a8f232
+      if (g_str_equal ((const gchar *)event.data.scalar.value,
a8f232
+                       "18446744073709551615"))
a8f232
+        {
a8f232
+          g_debug ("Coercing an invalid signed 64-bit integer to -1: %s",
a8f232
+                   (const gchar *)event.data.scalar.value);
a8f232
+          return -1;
a8f232
+        }
a8f232
+#endif
a8f232
       g_set_error (error,
a8f232
                    MODULEMD_YAML_ERROR,
a8f232
                    MODULEMD_ERROR_VALIDATE,
a8f232
diff --git a/modulemd/tests/test-modulemd-parse_int64.c b/modulemd/tests/test-modulemd-parse_int64.c
a8f232
index 2ccfb53..8759c21 100644
a8f232
--- a/modulemd/tests/test-modulemd-parse_int64.c
a8f232
+++ b/modulemd/tests/test-modulemd-parse_int64.c
a8f232
@@ -11,6 +11,7 @@
a8f232
  * For more information on free software, see <https://www.gnu.org/philosophy/free-sw.en.html>.
a8f232
  */
a8f232
 
a8f232
+#include "config.h"
a8f232
 #include <glib.h>
a8f232
 #include <locale.h>
a8f232
 #include <string.h>
a8f232
@@ -36,7 +37,7 @@ test (const char *input, gint64 expected_value, gboolean expected_error)
a8f232
     g_assert_nonnull (error);
a8f232
   else
a8f232
     g_assert_null (error);
a8f232
-  g_assert_cmpuint (parsed, ==, expected_value);
a8f232
+  g_assert_cmpint (parsed, ==, expected_value);
a8f232
 }
a8f232
 
a8f232
 static void
a8f232
@@ -69,6 +70,16 @@ test_int64_invalid_too_big (void)
a8f232
   test ("9223372036854775808", 0, TRUE);
a8f232
 }
a8f232
 
a8f232
+static void
a8f232
+test_int64_invalid_overflowed (void)
a8f232
+{
a8f232
+#ifdef HAVE_OVERFLOWED_BUILDORDER
a8f232
+  test ("18446744073709551615", -1, FALSE);
a8f232
+#else
a8f232
+  test ("18446744073709551615", 0, TRUE);
a8f232
+#endif
a8f232
+}
a8f232
+
a8f232
 static void
a8f232
 test_int64_invalid_too_small (void)
a8f232
 {
a8f232
@@ -143,6 +154,8 @@ main (int argc, char *argv[])
a8f232
                    test_int64_invalid_too_big);
a8f232
   g_test_add_func ("/modulemd/v2/int64/yaml/parse/invalid_too_small",
a8f232
                    test_int64_invalid_too_small);
a8f232
+  g_test_add_func ("/modulemd/v2/int64/yaml/parse/invalid_overflowed",
a8f232
+                   test_int64_invalid_overflowed);
a8f232
 
a8f232
   g_test_add_func ("/modulemd/v2/uint64/yaml/parse/valid", test_uint64_valid);
a8f232
   g_test_add_func ("/modulemd/v2/uint64/yaml/parse/invalid_no_digit",
a8f232
-- 
a8f232
2.31.1
a8f232