From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C09AB15AD88; Sun, 24 Mar 2024 23:15:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711322134; cv=none; b=Kv4n3CCmgtdgwzCW8xY+qegbL+m2L6bjRmEi6DisR/bIJTSpdgv8QgHh/6oooHgkNMh1SEn8Tju/muJD0Xm/bpj21oITqs+CwRGNdNaQzo1o4a4YZgt7Hw6HYGbcoHBiHznogpWXFqaIGPM1ljkjyEaBafTUqBbnj3rgzG2/PPg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711322134; c=relaxed/simple; bh=UUOZT4URC5sMqitMxezSz93Av9nk/7TZUbUd1Dq4Ees=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=YBj3BAzmK3xhnd8R9sUmtu4vud4PWYUL7KEW6yBWC1uzK63xrtVvKbeWTHl98jx549P7UIJT0xf7xk5WPcmfuX4cIF2rtyUYK5GuMBJzWD7M1vHw/6TjyG/2k12tUEe3U2CobT0rFbN0C1tMfy73EW5hipWeLb3zHco2o8/bmmM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=l/b57lm7; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="l/b57lm7" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DF99AC43390; Sun, 24 Mar 2024 23:15:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1711322133; bh=UUOZT4URC5sMqitMxezSz93Av9nk/7TZUbUd1Dq4Ees=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=l/b57lm7m7tTbFYGh+5U22IF8MvtfSOUfHd1DVVWwsA223x3cynPktLyEApcNLKGL XN7NYleYesRm6lS6fJN22Pg9x0UT98Z1IDtxt/JfwvBPx9apBRAeCx38WRKIJlTVvz wGhMMVV//Z4l4aGUwdqqZMGVvPEJFHCZ4ZeVufmAb6h82RxX2AyU7RU6KX86L/DECT qFQXOA1FRzkpMSjnKTx1j01yiNEZ/maRWAGMcJwdEabWqGsXzwxLQj7QgmHJyiF4Pf xpfoFWD0/kaiDXSYqtMvJ5P3lU9ZPk2WxoYGo8aQqHRM7xT2yhelfLvJzxVlDUgNZW vqoMjV4Rl0kRA== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: =?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?= , Bui Quang Minh , Alexei Starovoitov , Sasha Levin Subject: [PATCH 6.1 210/451] bpf: Fix stackmap overflow check on 32-bit arches Date: Sun, 24 Mar 2024 19:08:06 -0400 Message-ID: <20240324231207.1351418-211-sashal@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240324231207.1351418-1-sashal@kernel.org> References: <20240324231207.1351418-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit From: Toke Høiland-Jørgensen [ Upstream commit 7a4b21250bf79eef26543d35bd390448646c536b ] The stackmap code relies on roundup_pow_of_two() to compute the number of hash buckets, and contains an overflow check by checking if the resulting value is 0. However, on 32-bit arches, the roundup code itself can overflow by doing a 32-bit left-shift of an unsigned long value, which is undefined behaviour, so it is not guaranteed to truncate neatly. This was triggered by syzbot on the DEVMAP_HASH type, which contains the same check, copied from the hashtab code. The commit in the fixes tag actually attempted to fix this, but the fix did not account for the UB, so the fix only works on CPUs where an overflow does result in a neat truncation to zero, which is not guaranteed. Checking the value before rounding does not have this problem. Fixes: 6183f4d3a0a2 ("bpf: Check for integer overflow when using roundup_pow_of_two()") Signed-off-by: Toke Høiland-Jørgensen Reviewed-by: Bui Quang Minh Message-ID: <20240307120340.99577-4-toke@redhat.com> Signed-off-by: Alexei Starovoitov Signed-off-by: Sasha Levin --- kernel/bpf/stackmap.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/kernel/bpf/stackmap.c b/kernel/bpf/stackmap.c index f86db3cf72123..f0fd936cef319 100644 --- a/kernel/bpf/stackmap.c +++ b/kernel/bpf/stackmap.c @@ -94,11 +94,14 @@ static struct bpf_map *stack_map_alloc(union bpf_attr *attr) } else if (value_size / 8 > sysctl_perf_event_max_stack) return ERR_PTR(-EINVAL); - /* hash table size must be power of 2 */ - n_buckets = roundup_pow_of_two(attr->max_entries); - if (!n_buckets) + /* hash table size must be power of 2; roundup_pow_of_two() can overflow + * into UB on 32-bit arches, so check that first + */ + if (attr->max_entries > 1UL << 31) return ERR_PTR(-E2BIG); + n_buckets = roundup_pow_of_two(attr->max_entries); + cost = n_buckets * sizeof(struct stack_map_bucket *) + sizeof(*smap); smap = bpf_map_area_alloc(cost, bpf_map_attr_numa_node(attr)); if (!smap) -- 2.43.0