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 9703B17DFF7; Tue, 8 Oct 2024 12:30:52 +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=1728390652; cv=none; b=Xq6XpINcqE8qNu1ZSLTBETSHizjpeBJQDetqLTZ3vnYfqFrMhOzHVfy3SeqCKQSX+sOYL8z9IW04df+iiLVP3D8n+frtIj609M6D2f0AU9VtAoTRNUi6QFxs4mDLKEZMnWGY8WLzTobyRKctjGnrsMcHhb/wm8LDaMLYkiumFdQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728390652; c=relaxed/simple; bh=LRkmEn05KAqNPwTtgfw9BxALBtZzmMzAXEyScCQ279M=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OTS74kX7kiAzL75+LiNCCi5vPLCu720JZPF2VYpIPY+YvqA2jYnFaHnUmdtKYEEWrYmCGkGthUPRhfEmbvh77k2Oaej9/IGFOtGSPVob5bH7uASlpggVjf0eIE17QZEPTL1i4ov+GAEU3Mw5yVW39P9INMtWeazgsIzMjytfJLI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=YO4SjvpP; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="YO4SjvpP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1A40DC4CEC7; Tue, 8 Oct 2024 12:30:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1728390652; bh=LRkmEn05KAqNPwTtgfw9BxALBtZzmMzAXEyScCQ279M=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YO4SjvpPT0GjX6rVFLf/SQDxA3Xwj2WAeYu9jslo5owMc+Ue2GQaUiweayzbU7EJE eg7+HkLiMEa+2OwojAakxGIf2urY7vh8FN+gdkwJXJIWhUrG2R3bWuF+BpK8E13BDq CgWiruRhlu7F6VJfPnpCuSLDYBaGmOvS/WumUed4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Danilo Krummrich , Vlastimil Babka , David Rientjes , Christoph Lameter , Hyeonggon Yoo <42.hyeyoo@gmail.com>, Joonsoo Kim , Pekka Enberg , Roman Gushchin , Andrew Morton Subject: [PATCH 6.10 351/482] mm: krealloc: consider spare memory for __GFP_ZERO Date: Tue, 8 Oct 2024 14:06:54 +0200 Message-ID: <20241008115702.237603041@linuxfoundation.org> X-Mailer: git-send-email 2.46.2 In-Reply-To: <20241008115648.280954295@linuxfoundation.org> References: <20241008115648.280954295@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Danilo Krummrich commit 1a83a716ec233990e1fd5b6fbb1200ade63bf450 upstream. As long as krealloc() is called with __GFP_ZERO consistently, starting with the initial memory allocation, __GFP_ZERO should be fully honored. However, if for an existing allocation krealloc() is called with a decreased size, it is not ensured that the spare portion the allocation is zeroed. Thus, if krealloc() is subsequently called with a larger size again, __GFP_ZERO can't be fully honored, since we don't know the previous size, but only the bucket size. Example: buf = kzalloc(64, GFP_KERNEL); memset(buf, 0xff, 64); buf = krealloc(buf, 48, GFP_KERNEL | __GFP_ZERO); /* After this call the last 16 bytes are still 0xff. */ buf = krealloc(buf, 64, GFP_KERNEL | __GFP_ZERO); Fix this, by explicitly setting spare memory to zero, when shrinking an allocation with __GFP_ZERO flag set or init_on_alloc enabled. Link: https://lkml.kernel.org/r/20240812223707.32049-1-dakr@kernel.org Signed-off-by: Danilo Krummrich Acked-by: Vlastimil Babka Acked-by: David Rientjes Cc: Christoph Lameter Cc: Hyeonggon Yoo <42.hyeyoo@gmail.com> Cc: Joonsoo Kim Cc: Pekka Enberg Cc: Roman Gushchin Cc: Signed-off-by: Andrew Morton Signed-off-by: Greg Kroah-Hartman --- mm/slab_common.c | 7 +++++++ 1 file changed, 7 insertions(+) --- a/mm/slab_common.c +++ b/mm/slab_common.c @@ -1176,6 +1176,13 @@ __do_krealloc(const void *p, size_t new_ /* If the object still fits, repoison it precisely. */ if (ks >= new_size) { + /* Zero out spare memory. */ + if (want_init_on_alloc(flags)) { + kasan_disable_current(); + memset((void *)p + new_size, 0, ks - new_size); + kasan_enable_current(); + } + p = kasan_krealloc((void *)p, new_size, flags); return (void *)p; }