]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
udf: Fix use of check_add_overflow() with mixed type arguments
authorBen Hutchings <benh@debian.org>
Mon, 24 Feb 2025 16:00:27 +0000 (17:00 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 13 Mar 2025 11:47:45 +0000 (12:47 +0100)
Commit ebbe26fd54a9 "udf: Avoid excessive partition lengths"
introduced a use of check_add_overflow() with argument types u32,
size_t, and u32 *.

This was backported to the 5.x stable branches, where in 64-bit
configurations it results in a build error (with older compilers) or a
warning.  Before commit d219d2a9a92e "overflow: Allow mixed type
arguments", which went into Linux 6.1, mixed type arguments are not
supported.  That cannot be backported to 5.4 or 5.10 as it would raise
the minimum compiler version for these kernel versions.

Add a cast to make the argument types compatible.

Fixes: 1497a4484cdb ("udf: Avoid excessive partition lengths")
Fixes: 551966371e17 ("udf: Avoid excessive partition lengths")
Signed-off-by: Ben Hutchings <benh@debian.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/udf/super.c

index ae75df43d51cb8f59eb0bb0c42c55545e9abf7ec..8dae5e73a00bce0a7dff49965bbb325152b3c8e6 100644 (file)
@@ -1153,7 +1153,7 @@ static int udf_fill_partdesc_info(struct super_block *sb,
                map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
                /* Check whether math over bitmap won't overflow. */
                if (check_add_overflow(map->s_partition_len,
-                                      sizeof(struct spaceBitmapDesc) << 3,
+                                      (u32)(sizeof(struct spaceBitmapDesc) << 3),
                                       &sum)) {
                        udf_err(sb, "Partition %d is too long (%u)\n", p_index,
                                map->s_partition_len);